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

GridView.MasterRowExpanded Event

Fires immediately after a particular detail clone has become visible.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

[DXCategory("MasterDetail")]
public event CustomMasterRowEventHandler MasterRowExpanded

Event Data

The MasterRowExpanded event's data class is CustomMasterRowEventArgs. The following properties provide information specific to this event:

Property Description
RelationIndex Gets the relation index that identifies the affected detail.
RowHandle Gets the handle of the currently processed master row in the current View.

Remarks

The MasterRowExpanded event fires when expanding a master row or when switching between details. The master row can be determined using the CustomMasterRowEventArgs.RowHandle parameter. The detail can be identified using the CustomMasterRowEventArgs.RelationIndex parameter.

The MasterRowExpanded event serves as a notification only and cannot cancel the action. To control whether details can shown, handle the GridView.MasterRowExpanding event instead.

If you need to handle detail clones creation, handle the grid control’s GridControl.ViewRegistered event.

Please refer to the Master-Detail Relationships topic for additional information.

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

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