Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

LayoutViewOptionsPrint.PrintMode Property

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

Namespace: DevExpress.XtraGrid.Views.Layout

Assembly: DevExpress.XtraGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

#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