Vcl.StdCtrls.TCustomCombo.GetItemHt

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetItemHt: Integer; virtual; abstract;

C++

virtual int __fastcall GetItemHt() = 0 ;

Properties

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

Description

Returns the value of the ItemHeight property.

GetItemHt is the protected read access method for the ItemHeight property. In TCustomCombo, this method is abstract (pure virtual), meaning it has no implementation. Descendant classes override this method to return the height of items in the drop-down list.

See Also