Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxTreeListNode.IsVisible Property

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 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