Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TimeRegionType Enum

Lists the types of time regions.

Namespace: DevExpress.Xpf.Scheduling

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

NuGet Package: DevExpress.Wpf.Scheduling

#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