FormComboBoxControl.hWnd Method [AX 2012]

Returns the Windows handle for the control.

public int hWnd()

Run On

Client

Return Value

Type: int
The handle for the control.

The handle can be used with the Windows API.

The following example shows how to retrieve the Windows handle for a control.

int h; 
 
h = this.hWnd(); 
info (strfmt("hWnd: %1", h));

Community Additions

ADD
Show: