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

GridView.GetRelationIndex(Int32, String) Method

Gets the index of the specified relationship for the specified master row.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

public virtual int GetRelationIndex(
    int rowHandle,
    string relationName
)

Parameters

Name Type Description
rowHandle Int32

An integer value specifying the master row handle.

relationName String

A string identifying the name of the required relationship.

Returns

Type Description
Int32

An integer representing the zero-based index of the specified relationship; -999999 if a relationship with the specified name is not found.

Remarks

The number of relations for a particular row is determined by the GridView.GetRelationCount method. The GetRelationIndex method returns a value between 0 and GetRelationCount-1 and this defines the specified relationship’s index amongst the other relationships. The indexes define the order in which detail Views are displayed for particular master rows.

To get the name of a relationship by its index, the GridView.GetRelationName method can be used.

Note

Detail pattern Views do not contain data and they are never displayed within XtraGrid. So, the GetRelationIndex member must not be invoked for these Views. The GetRelationIndex member can only be used with real Views that are displayed within the Grid Control. The real Views with which an end-user interacts at runtime can be accessed using the following methods.

The following code snippets (auto-collected from DevExpress Examples) contain references to the GetRelationIndex(Int32, String) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also