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

DataDependentControlBase.PrintInColumn Property

Specifies in which columns the control is printed.

Namespace: DevExpress.XtraScheduler.Reporting

Assembly: DevExpress.XtraScheduler.v24.2.Reporting.dll

NuGet Package: DevExpress.Win.SchedulerReporting

#Declaration

[DefaultValue(PrintInColumnMode.All)]
[XtraSerializableProperty]
public PrintInColumnMode PrintInColumn { get; set; }

#Property Value

Type Default Description
PrintInColumnMode All

A PrintInColumnMode enumeration member.

Available values:

Name Description
All

The control is printed in all columns.

Odd

The control is printed only in odd columns.

Even

The control is printed only in even columns.

#Remarks

The information controls derived from the DataDependentControlBase class can be printed in column mode differently. The control can be printed in each column, or selectively - in odd columns only or in even columns only, as the PrintInColumn property specifies.

The number of columns in column mode is determined by the ReportDayView.VisibleDayColumnCount, the ReportTimelineView.VisibleIntervalColumnCount, or the ReportWeekView.VisibleWeekDayColumnCount property for the corresponding View.

See Also