Skip to main content

SchedulerSmartSyncOptions.GroupType Property

Gets or sets the grouping used for creating report pages if the SchedulerPrintAdapter.EnableSmartSync option is switched on. This is a dependency property.

Namespace: DevExpress.Xpf.Scheduling.Reporting

Assembly: DevExpress.Xpf.Scheduling.v23.2.dll

NuGet Package: DevExpress.Wpf.Scheduling

Declaration

public SchedulerGroupType GroupType { get; set; }

Property Value

Type Description
SchedulerGroupType

A SchedulerGroupType enumeration member specifying the grouping for the SmartSync printing.

Available values:

Name Description
None

No grouping is applied.

Date

Grouping by dates. Appointments are grouped by dates.

Resource

Grouping by resources. Appointments are grouped by resources.

Remarks

If the GroupType is set to the SchedulerGroupType.Resource, the report starts with the first resource for all dates from the SchedulerPrintAdapter.TimeSpanRange, then goes to the next resource and so on.

With the GroupType set to SchedulerGroupType.Date, the report starts with the first date from the SchedulerPrintAdapter.TimeSpanRange for all available resources, then goes to the next date and so on.

Note

Handle the SchedulerPrintAdapter.ValidateResources event to filter resources passed to the report.

See Also