windowsforms-devexpress-dot-xtragrid-dot-views-dot-layout-dot-layoutviewoptionsview-46eb83f2.md
Gets or sets the card layout.
Namespace : DevExpress.XtraGrid.Views.Layout
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(LayoutViewMode.SingleRecord)]
[XtraSerializableProperty]
public virtual LayoutViewMode ViewMode { get; set; }
<DefaultValue(LayoutViewMode.SingleRecord)>
<XtraSerializableProperty>
Public Overridable Property ViewMode As LayoutViewMode
| Type | Default | Description |
|---|---|---|
| LayoutViewMode | SingleRecord |
A LayoutViewMode value.
|
Available values:
| Name | Description |
|---|---|
| SingleRecord |
A single card is displayed at one time.
| | Row |
Cards are arranged in a single row.
| | Column |
Cards are arranged in a single column.
| | MultiRow |
Cards are arranged in multiple rows.
| | MultiColumn |
Cards are arranged in multiple columns.
| | Carousel |
Cards are arranged in an ellipse using a transparency effect. Use the LayoutView.OptionsCarouselMode property to customize related display options.
|
You can access this nested property as listed below:
| Object Type | Path to ViewMode |
|---|---|
| LayoutView |
.OptionsView .ViewMode
|
Use the ViewMode property to specify how cards are arranged within a View.
An end-user can switch between display modes by clicking a corresponding button within the Header Panel. You can disable this feature by setting a corresponding Enable…Button option to false. These options are available via the LayoutView.OptionsHeaderPanel object.
To specify how cards are arranged when a View is printed, see the LayoutViewOptionsPrint.PrintMode property.
See Also