windowsforms-devexpress-dot-xtragrid-dot-views-dot-layout-dot-layoutviewoptionsview-9da69270.md
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.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(LayoutCardArrangeRule.ShowWholeCards)]
[XtraSerializableProperty]
public virtual LayoutCardArrangeRule CardArrangeRule { get; set; }
<DefaultValue(LayoutCardArrangeRule.ShowWholeCards)>
<XtraSerializableProperty>
Public Overridable Property CardArrangeRule As LayoutCardArrangeRule
| 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.
|
You can access this nested property as listed below:
| Object Type | Path to CardArrangeRule |
|---|---|
| LayoutView |
.OptionsView .CardArrangeRule
|
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