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

GridLevelNode.Find(String) Method

Searches for the node that refers to the specified relationship.

Namespace: DevExpress.XtraGrid

Assembly: DevExpress.XtraGrid.v19.1.dll

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