Vcl.StdCtrls.TCustomCombo.GetItemCount

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetItemCount: Integer; virtual; abstract;

C++

virtual int __fastcall GetItemCount() = 0 ;

Properties

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

Description

Returns the value of the ItemCount property.

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

See Also