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

MultiColumnMode Enum

Specifies which multi-column properties will be taken into account if the multi-column feature is enabled.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v24.2.dll

NuGet Package: DevExpress.Reporting.Core

#Declaration

public enum MultiColumnMode

#Members

Name Description
None

Multicolumn printing is disabled.

UseColumnCount

Multicolumn printing is enabled and uses the MultiColumn.ColumnCount property’s value. The MultiColumn.ColumnWidth property’s value is ignored in this case, and the width of the columns is calculated automatically based upon the MultiColumn.ColumnCount property’s value and the page’s width.

UseColumnWidth

Multicolumn printing is enabled and uses the MultiColumn.ColumnWidth property’s value. The MultiColumn.ColumnCount property’s value is ignored in this case, and the number of the columns is calculated automatically based upon the MultiColumn.ColumnWidth property’s value and the page’s width.

#Related API Members

The following properties accept/return MultiColumnMode values:

#Remarks

This enumeration’s values are set or returned by the MultiColumn.Mode property.

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

See Also