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

LayoutViewOptionsView.ViewMode Property

Gets or sets the card layout.

Namespace: DevExpress.XtraGrid.Views.Layout

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

[DefaultValue(LayoutViewMode.SingleRecord)]
[XtraSerializableProperty]
public virtual LayoutViewMode ViewMode { get; set; }

Property Value

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.

Property Paths

You can access this nested property as listed below:

Object Type Path to ViewMode
LayoutView
.OptionsView.ViewMode

Remarks

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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the ViewMode property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also