TcxTreeListNode.IsVisible Property
Indicates if the node is hidden within collapsed parents.
Declaration
property IsVisible: Boolean read;
Property Value
Type |
---|
Boolean |
Remarks
The IsVisible
property returns True
if any of the following conditions are met:
- All the node’s parents are visible and expanded.
- The node is a root node.
Otherwise, the IsVisible
property returns False
.
Call the MakeVisible method to expand parent nodes to display their particular child node.
Note
Unlike the IsHidden property, IsVisible
only checks the expanded state of the node’s parents, ignoring the following:
The node’s Visible property value.
The filtering applied via the TreeList control’s Filter property and/or the OnFilterNode event.
See Also