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

TimeRegionType Enum

Lists the types of time regions.

Namespace: DevExpress.Xpf.Scheduling

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

Declaration

public enum TimeRegionType

Members

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.

Related API Members

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