Skip to main content

CustomRowFilterEventArgs.Visible Property

Gets whether the processed TreeListNode is visible.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v23.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