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

SchedulerControl.ActualGroupType Property

Gets the actual grouping applied to the Scheduler. This is a dependency property.

Namespace: DevExpress.Xpf.Scheduling

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Scheduling, DevExpress.Wpf.Scheduling

Declaration

public SchedulerGroupType ActualGroupType { get; }

Property Value

Type Description
SchedulerGroupType

A SchedulerGroupType enumeration value indicating the grouping type.

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

Use the ActualGroupType property to check the grouping type currently applied to the SchedulerControl. The grouping is defined by the SchedulerControl.GroupType property. If it is set to SchedulerGroupType.Date or SchedulerGroupType.Resource when no resources are provided, the ActualGroupType property returns SchedulerGroupType.None. In other cases, the ActualGroupType property value matches the SchedulerControl.GroupType value.

See Also