Skip to main content

RecurrenceInfo.Month Property

Gets or sets the month (as a number) on which the corresponding appointment reoccurs.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v14.2.Core.dll

#Declaration

public int Month { get; set; }

#Property Value

Type Description
Int32

A positive integer value that specifies the ordinal number of the month.

#Remarks

If the recurrence pattern is defined on a yearly time basis (the RecurrenceInfo.Type property value is set to RecurrenceType.Yearly), the Month property specifies the number of the month on which the corresponding appointment reoccurs. The effective values for this property are 1 to 12 inclusive, which respectively identify the months from January to December. For instance, setting the Month property to 3 specifies March.

RecurrenceInfo_Month

NOTE

If the value set for the Month property in code is more than 12, 12 will be assigned instead. At the same time, assigning a value less than 1 to the Month property will cause a value of 1 to be assigned.

See Also