Skip to main content

TreeListNodesIterator.GetPrevVisible(TreeListNode) Method

Returns the visible node which is located prior to the specified one.

Namespace: DevExpress.XtraTreeList.Nodes.Operations

Assembly: DevExpress.XtraTreeList.v23.2.dll

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

Declaration

public static TreeListNode GetPrevVisible(
    TreeListNode node
)

Parameters

Name Type Description
node TreeListNode

A TreeListNode object representing the visible node whose previous visible node is returned.

Returns

Type Description
TreeListNode

A TreeListNode object representing the visible node which is located prior to the specified one. null (Nothing in Visual Basic) if the node specified by the parameter is the first visible node.

Remarks

The GetPrevVisible method gets a visible node which is located prior to the specified one. Note that the node is hidden if its parent node is collapsed.

See Also