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

LayoutView.SetCardCollapsed(Int32, Boolean) Method

Collapses or expands the specified card.

Namespace: DevExpress.XtraGrid.Views.Layout

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public void SetCardCollapsed(
    int rowHandle,
    bool collapsed
)

Parameters

Name Type Description
rowHandle Int32

An integer value representing the card’s handle.

collapsed Boolean

true to collapse the specified card; false to expand the specified card.

Remarks

Use the SetCardCollapsed method to collapse or expand individual cards. Calling this method has no effect if the View’s LayoutViewOptionsBehavior.AllowExpandCollapse property is set to false.

To specify whether individual cards can be collapsed or expanded, handle the View’s LayoutView.CardCollapsing and LayoutView.CardExpanding events, respectively.

Note

Detail pattern Views do not contain data and they are never displayed within XtraGrid. So, the SetCardCollapsed member must not be invoked for these Views. The SetCardCollapsed member can only be used with real Views that are displayed within the Grid Control. The real Views with which an end-user interacts at runtime can be accessed using the following methods.

See Also