Skip to main content

GridLevelNode.Find(String) Method

Searches for the node that refers to the specified relationship.

Namespace: DevExpress.XtraGrid

Assembly: DevExpress.XtraGrid.v23.2.dll

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

Declaration

public GridLevelNode Find(
    string relationName
)

Parameters

Name Type Description
relationName String

A string representing the referenced relationship.

Returns

Type Description
GridLevelNode

A GridLevelNode object that refers to the specified relationship; null if no node is found.

Remarks

If the current node’s GridLevelNode.RelationName property refers to the specified relationship, the Find method returns the current node. Otherwise, this method performs a recursive search through the child nodes of the node that this method was called from for a node that refers to the specified relationship. If there isn’t any node found with a reference to the specified relationship null is returned.

See Also