Skip to main content

TcxGridCardViewRowLayoutController.BeginsLayer Property

Specifies if a card row and subsequent card rows are arranged in a new layer.

Declaration

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

Property Value

Type Description
Boolean

True if the target card row begins a layer; otherwise, False.

Remarks

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

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

VCL Data Grid: A Horizontal Row Layout Example

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

VCL Data Grid: A Vertical Row Layout Example

In addition, a card can be split into an arbitrary number of columns or rows. Under the split layout, the resulting columns and rows are called layers. You can set the BeginsLayer property to True for a card row to create a new layer.

Note

The BeginsLayer property value is always True for the first card row in a card.

See Also