windowsforms-devexpress-dot-xtrascheduler-dot-reporting-985f6c0c.md
List the arrangement orders of columns in a sequence.
Namespace : DevExpress.XtraScheduler.Reporting
Assembly : DevExpress.XtraScheduler.v25.2.Reporting.dll
NuGet Package : DevExpress.Win.SchedulerReporting
public enum ColumnArrangementMode
Public Enum ColumnArrangementMode
| Name | Description |
|---|---|
Ascending |
Specifies that groups are arranged in ascending order, according to the number of items in a group.
|
| Descending |
Specifies that groups are arranged in descending order, according to the number of items in a group.
|
The following properties accept/return ColumnArrangementMode values:
In a multicolumn report, the columns may contain a different number of time interval items. For example, the ReportDayView with ReportDayView.VisibleDayCount set to 5 and ReportDayView.VisibleDayColumnCount set to 2 is split in two columns, one column containing 2 days, and the other, three. The order does matter in this case, i.e. the first column may contain 2 days and the next - 3, or vice versa - 3, 2. The ColumnArrangementMode provides two display options, ascending and descending.
See Also