Vcl.Outline.TOutlineNode.IsVisible

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property IsVisible: Boolean read HasVisibleParent;

C++

__property bool IsVisible = {read=HasVisibleParent, nodefault};

Properties

Type Visibility Source Unit Parent
property public
Vcl.Outline.pas
Vcl.Outline.hpp
Vcl.Outline TOutlineNode

Description

Indicates whether the outline node is visible in the outline.

Read IsVisible to determine whether the node is part of the current image of the outline. A node is visible if it is on level 1 or if all its parents are expanded.

Note: Do not confuse IsVisible with the Visible property of TControl objects. Outline nodes are not controls, but merely helper objects that describe nodes for an outline control. IsVisible indicates whether a node is visible because its parents are expanded or collapsed. It does not provide information about whether the node has been scrolled out of view, or even if the outline is not visible.

See Also