Vcl.Outline.TCustomOutline.ItemCount
Delphi
property ItemCount: LongInt read GetItemCount;
C++
__property int ItemCount = {read=GetItemCount, nodefault};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | Vcl.Outline.pas Vcl.Outline.hpp |
Vcl.Outline | TCustomOutline |
Description
Indicates the number of nodes in the outline.
Read ItemCount to determine the number of nodes in the outline. Use ItemCount with the Items property array to iterate over all nodes in the outline.
Note: Reading ItemCount can be computationally expensive, as it causes all the indexes used by the outline to be updated.