wpf-devexpress-dot-xpf-dot-scheduling-573db38f.md
Lists the types of time regions.
Namespace : DevExpress.Xpf.Scheduling
Assembly : DevExpress.Xpf.Scheduling.v25.2.dll
NuGet Package : DevExpress.Wpf.Scheduling
public enum TimeRegionType
Public Enum TimeRegionType
| Name | Description |
|---|---|
Normal |
Represents a non-recurring time region.
|
| Pattern |
Represents the time region which serves as the pattern for the other recurring time regions. The pattern for recurring time regions is specified via the TimeRegionItem.RecurrenceInfo property.
|
| Occurrence |
Represents a regular recurring time region whose pattern is specified via the TimeRegionItem.RecurrenceInfo property.
|
| ChangedOccurrence |
Represents a recurring time region, which was changed and now doesn’t satisfy the pattern of the recurring series.
|
| DeletedOccurrence |
Represents a recurring time region which was deleted from the series of other recurring time regions of the same pattern.
|
The following properties accept/return TimeRegionType values:
Values listed by this enumeration are used to set the value of the TimeRegionItem.Type property.
When you map the TimeRegionItem.Type property to the data field, use a field of the int type. The TimeRegionType members are enumerated as follows:
Normal = 0, Pattern = 1, Occurrence = 2, ChangedOccurrence = 3, DeletedOccurrence = 4
See Also