Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

GridView.MasterRowExpanded Event

Fires immediately after a particular detail clone has become visible.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v24.2.dll

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

#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