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

TreeListNodesIterator.GetNextVisible(TreeListNode) Method

Returns the visible node located after the specified one.

Namespace: DevExpress.XtraTreeList.Nodes.Operations

Assembly: DevExpress.XtraTreeList.v19.2.dll

Declaration

public static TreeListNode GetNextVisible(
    TreeListNode node
)

Parameters

Name Type Description
node TreeListNode

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

Returns

Type Description
TreeListNode

A TreeListNode object representing the visible node located after the specified one. null (Nothing in Visual Basic) if the node specified by the parameter is the last visible node.

Remarks

The GetNextVisible method gets the next visible node after the specified one. Note that a node is hidden if its parent node is collapsed.

See Also