Vcl.Outline.TCustomOutline.ItemCount

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ItemCount: LongInt read GetItemCount;

C++

__property System::LongInt 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.

See Also