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

LayoutView.CardCollapsing Event

Provides the ability to prevent particular cards from being collapsed.

Namespace: DevExpress.XtraGrid.Views.Layout

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

[DXCategory("Behavior")]
public event RowAllowEventHandler CardCollapsing

Event Data

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

Property Description
Allow Gets or sets a value specifying whether the current operation is allowed.
RowHandle Gets the row’s handle (position). For the ColumnView.RowUpdated event, this property specifies the previous handle (position) of the currently processed row. Inherited from RowEventArgs.

Remarks

The CardCollapsing event is raised when an attempt is made to collapse a card (regardless of whether this is being performed in code or by an end-user at runtime). The card is identified by the RowEventArgs.RowHandle parameter. To prevent it from being collapsed set the RowAllowEventArgs.Allow parameter to false.

See Also