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

MultiColumn.Layout Property

Specifies the layout direction for columns in a multi-column report.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v18.2.dll

Declaration

[DefaultValue(ColumnLayout.DownThenAcross)]
public ColumnLayout Layout { get; set; }

Property Value

Type Default Description
ColumnLayout **DownThenAcross**

A ColumnLayout enumeration value.

Available values:

Name Description
DownThenAcross

The Detail bands are printed vertically, then horizontally (in columns).

AcrossThenDown

The Detail bands are printed horizontally, then vertically (in rows).

Remarks

Use this property to specify whether the Detail bands should be printed horizontally, then vertically (in rows), or vice versa - vertically, then horizontally (in columns).

When the Layout property is set to ColumnLayout.DownThenAcross, the Document.AutoFitToPagesWidth property is ignored.

To learn more, see Creating a Multi-Column Report.

See Also