TcxTreeListNode.IsVisible Property
In This Article
Indicates if the node is hidden within collapsed parents.
#Declaration
Delphi
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 IsIs
only checks the expanded state of the node’s parents, ignoring the following:
The node’s Visible property value.
The filtering applied via the Tree
List control’s Filter property and/or the OnFilter event.Node
See Also