Vcl.StdCtrls.TCustomCombo.GetItemsClass
Delphi
function GetItemsClass: TCustomComboBoxStringsClass; virtual; abstract;
C++
virtual TCustomComboBoxStringsClass __fastcall GetItemsClass(void) = 0 ;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | protected | Vcl.StdCtrls.pas Vcl.StdCtrls.hpp |
Vcl.StdCtrls | TCustomCombo |
Description
Indicates the class that implements the Items property.
TCustomCombo uses GetItemsClass internally to determine what class to instantiate when it implements the Items property.
In TCustomCombo, GetItemsClass is abstract pure virtual, meaning it has no implementation. TCustomCombo descendants override this method to indicate a TCustomComboBoxStrings descendant that implements the Items property.