Vcl.StdCtrls.TCustomCombo.EditHandle

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property EditHandle: HWnd read FEditHandle;

C++

__property HWND EditHandle = {read=FEditHandle, nodefault};

Properties

Type Visibility Source Unit Parent
property protected
Vcl.StdCtrls.pas
Vcl.StdCtrls.hpp
Vcl.StdCtrls TCustomCombo

Description

Returns the window handle for the edit portion of the combo box.

A combo box is composed of several windows: the combo box itself, the edit control, and the drop-down list. EditHandle is the window handle of the edit control portion. (The Handle property and the ListHandle property give the handles for the combo box itself and the drop-down list, respectively.)

Use EditHandle when making Windows API calls addressed to the edit portion of the combo box.

See Also