Back to Devexpress

TimeRegionType Enum

wpf-devexpress-dot-xpf-dot-scheduling-573db38f.md

latest2.1 KB
Original Source

TimeRegionType Enum

Lists the types of time regions.

Namespace : DevExpress.Xpf.Scheduling

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

NuGet Package : DevExpress.Wpf.Scheduling

Declaration

csharp
public enum TimeRegionType
vb
Public Enum TimeRegionType

Members

NameDescription
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:

Remarks

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

DevExpress.Xpf.Scheduling Namespace