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

CardView.CardExpanded Event

Fires immediately after a card has been expanded.

Namespace: DevExpress.XtraGrid.Views.Card

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

[DXCategory("Behavior")]
public event RowEventHandler CardExpanded

Event Data

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

Property Description
RowHandle Gets the row’s handle (position). For the ColumnView.RowUpdated event, this property specifies the previous handle (position) of the currently processed row.

Remarks

This event is raised immediately after a card has been expanded either by an end-user or via code. Note that the event serves as a notification only and the action can’t be cancelled. To control whether individual cards can be expanded, handle the CardView.CardExpanding event instead.

See Also