Vcl.Outline.TOutlineNode.Expanded

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Expanded: Boolean read FState write SetExpandedState;

C++

__property bool Expanded = {read=FState, write=SetExpandedState, nodefault};

Properties

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

Description

Determines whether descendants of the outline node are displayed.

Set Expanded to true to display all subnodes of a node. When an outline node is expanded, its descendants are displayed and, depending on the OutlineStyle property of the outline in which the node is contained, the minus picture or open picture is displayed.

Set Expanded to false to collapse the node. When an outline node is collapsed, its descendants are hidden and, depending on the OutlineStyle property of the outline in which the node is contained, the plus picture or closed picture is displayed.

Expanded is not meaningful for nodes that have no descendants.

See Also