Skip to main content
A newer version of this page is available. .

CustomRowFilterEventArgs.Visible Property

Gets whether the processed TreeListNode is visible.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v19.2.dll

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