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

ISmartSyncOptions.GroupType Property

When implemented by a class, gets or sets the grouping type used for creating report pages if the EnableSmartSync option of the scheduler print adapter is switched on.

Namespace: DevExpress.XtraScheduler.Reporting

Assembly: DevExpress.XtraScheduler.v20.2.Core.Desktop.dll

NuGet Packages: DevExpress.Scheduler.CoreDesktop, DevExpress.WindowsDesktop.Scheduler.CoreDesktop

Declaration

SchedulerGroupType GroupType { get; set; }

Property Value

Type Description
SchedulerGroupType

A SchedulerGroupType enumeration member specifying the grouping type for 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.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to GroupType
Cross-Platform Class Library SchedulerPrintAdapter
.SmartSyncOptions .GroupType
WinForms Controls SchedulerControlPrintAdapter
.SmartSyncOptions .GroupType
SchedulerStoragePrintAdapter
.SmartSyncOptions .GroupType
WPF Controls DXSchedulerControlPrintAdapter
.SmartSyncOptions .GroupType
DXSchedulerPrintAdapter
.SmartSyncOptions .GroupType
DXSchedulerStoragePrintAdapter
.SmartSyncOptions .GroupType
SchedulerPrintAdapter
.SmartSyncOptions .GroupType
ASP.NET Web Forms Controls ASPxSchedulerControlPrintAdapter
.SmartSyncOptions .GroupType
ASPxSchedulerPrintAdapterBase
.SmartSyncOptions .GroupType
ASPxSchedulerStoragePrintAdapter
.SmartSyncOptions .GroupType

Remarks

If the GroupType is set to SchedulerGroupType.Resource, the report starts with the first resource for all dates from the TimeInterval of the scheduler print adapter, then goes to the next resource and so on.

If the GroupType is set to SchedulerGroupType.Date, the report starts with the first date from the TimeInterval of the scheduler print adapter for all available resources, then goes to the next date and so on.

Note

You can filter resources to be passed to the report by handling the ValidateResources event of the scheduler print adapter.

See Also