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.v25.1.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
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 |
|
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