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

LayoutViewOptionsView.CardArrangeRule Property

Gets or sets whether only entire cards can be displayed at the same time, or allow cards to be partially displayed.

Namespace: DevExpress.XtraGrid.Views.Layout

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

[DefaultValue(LayoutCardArrangeRule.ShowWholeCards)]
[XtraSerializableProperty]
public virtual LayoutCardArrangeRule CardArrangeRule { get; set; }

Property Value

Type Default Description
LayoutCardArrangeRule **ShowWholeCards**

A LayoutCardArrangeRule value.

Available values:

Name Description
ShowWholeCards

Whole cards only are displayed.

AllowPartialCards

Allow cards to be partially displayed.

Property Paths

You can access this nested property as listed below:

Object Type Path to CardArrangeRule
LayoutView
.OptionsView.CardArrangeRule

Remarks

Due to possible scrolling issues, it is not recommended to set the CardArrangeRule property to the LayoutCardArrangeRule.AllowPartialCards value if you handle the LayoutView.CustomCardLayout event.

See Also