FormComboBoxControl.hWnd Method

Definition

Returns the Windows handle for the control.

public:
 override int hWnd();
public override int hWnd ();
override this.hWnd : unit -> int
Public Overrides Function hWnd () As Integer

Returns

The handle for the control.

Remarks

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));

Applies to