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

LayoutViewOptionsPrint.PrintMode Property

Gets or sets the card layout when the View is printed/exported.

Namespace: DevExpress.XtraGrid.Views.Layout

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

[DefaultValue(LayoutViewPrintMode.Default)]
[XtraSerializableProperty]
public virtual LayoutViewPrintMode PrintMode { get; set; }

Property Value

Type Default Description
LayoutViewPrintMode **Default**

A LayoutViewPrintMode value that specifies the card layout in the print/export output.

Available values:

Name Description
Default

Currently, this option is the same as the LayoutViewPrintMode.MultiColumn option.

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.

Property Paths

You can access this nested property as listed below:

Object Type Path to PrintMode
LayoutView
.OptionsPrint.PrintMode

Remarks

If the PrintMode property is set to Default, cards are arranged in multiple columns when the View is printed/exported.

To specify the card layout that is applied when the View is displayed onscreen, use the LayoutViewOptionsView.ViewMode property.

See Also