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

CardView.ExpandCard(Int32) Method

Expands the specified card.

Namespace: DevExpress.XtraGrid.Views.Card

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public void ExpandCard(
    int rowHandle
)

Parameters

Name Type Description
rowHandle Int32

An integer value that identifies the card by its handle.

Remarks

The ExpandCard method raises the CardView.CardExpanding event. This event allows you to prevent the card from being expanded. If a card has been expanded the CardView.CardExpanded event is raised.

Note

Detail pattern Views do not contain data and they are never displayed within XtraGrid. So, the ExpandCard member must not be invoked for these Views. The ExpandCard 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