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

CustomRowFilterEventArgs.Visible Property

Gets whether the processed TreeListNode is visible.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v24.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

#Declaration

public bool Visible { get; set; }

#Property Value

Type Description
Boolean

true if the processed TreeListNode is visible; otherwise, false.

#Remarks

Set the Visible parameter to false and the Handled parameter to true to hide the currently processed row.

To make the row visible regardless of the tree list’s filter set both the Visible and Handled parameters to true.

If the Handled parameter is set to false, the tree list’s filter determines the row’s visibility.

See Also