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

DataDependentControlBase.PrintInColumn Property

Specifies in which columns the control is printed.

Namespace: DevExpress.XtraScheduler.Reporting

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

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