Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxGridCardViewRowLayoutObject.BeginsLayer Property

Specifies whether the ARow card row and subsequent card rows will be placed in a new layer.

#Declaration

Delphi
property BeginsLayer[ARow: TcxGridCardViewRow]: Boolean read; write;

#Property Value

Type
Boolean

#Remarks

A Card View allows you to specify one of two card row layouts:

  • Card rows can be arranged horizontally – a chain of card rows goes from left to right, if the View’s RowLayout property is set to rlHorizontal.

  • They can be shown in a vertical orientation, one under another, if the View’s RowLayout property is set to rlVertical.

In addition, a card can be split into an arbitrary number of columns or rows. In a split layout, the resulting columns and rows are named “layers”. Creating a new layer is performed by setting the BeginsLayer property of the card row that will start the new layer to True.

Note

The first item in a card has its BeginsLayer property always set to True.

See Also