MultiColumn.Layout Property
Specifies the layout direction for columns in a multi-column report.
Namespace: DevExpress.XtraReports.UI
Assembly: DevExpress.XtraReports.v24.2.dll
NuGet Package: DevExpress.Reporting.Core
#Declaration
[DefaultValue(ColumnLayout.DownThenAcross)]
public ColumnLayout Layout { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Column |
Down |
A Column |
Available values:
Name | Description |
---|---|
Down |
The Detail bands are printed vertically, then horizontally (in columns). |
Across |
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.
#Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Layout 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.