FMX.TreeView.TCustomTreeView.GlobalCount

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property GlobalCount: Integer read GetGlobalCount;

C++

__property int GlobalCount = {read=GetGlobalCount, nodefault};

Properties

Type Visibility Source Unit Parent
property public
FMX.TreeView.pas
FMX.TreeView.hpp
FMX.TreeView TCustomTreeView

Description

Contains the number of all the visible tree items (first-level and subitems) in this tree view.

Read the GlobalCount property to determine the number of all the visible tree items that are present on this tree view, regardless of the item's level in the tree hierarchy (that is, including items, subitems, and subitems of the subitems).

Read the Count property to obtain the number of tree items on the first level (that is, root nodes), regardless of whether the items are visible or not.

See Also