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

LayoutView.CardCollapsed Event

Fires immediately after a card has been collapsed.

Namespace: DevExpress.XtraGrid.Views.Layout

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

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

Event Data

The CardCollapsed 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 after a card has been collapsed by an end-user or via code. The event only provides a notification and the action can’t be cancelled. To specify whether individual cards are allowed to be collapsed, handle the LayoutView.CardCollapsing event.

See Also