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

CustomMasterRowEventArgs.RelationIndex Property

Gets the relation index that identifies the affected detail.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

public int RelationIndex { get; }

Property Value

Type Description
Int32

An integer value specifying the relation index.

Remarks

Master rows can have several detail Views. In such cases, you will need to determine the detail clone affected when handling operations on master rows. Use the RelationIndex property for this purpose. The number of details for a specific row is determined by the GridView.GetRelationCount method.

You can determine the relation name by the relation index using the View’s GridView.GetRelationName method. The corresponding detail View clone can be obtained using the GridView.GetDetailView method.

The following code snippets (auto-collected from DevExpress Examples) contain references to the RelationIndex property.

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