Skip to main content

ISchedulerRecurrenceInfo.DayNumber Property

Specifies the ordinal number of a day within a month.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

int DayNumber { get; set; }

Property Value

Type Description
Int32

The number of a day number within a month.

Remarks

If the Type property is set to Monthly or Yearly and the WeekOfMonth is set to None, use the DayNumber property to specify the ordinal number of the day within a month. The property value is used to calculate the date on which the appointment reoccurs. Acceptable values are from 1 to 31. If you specify a value that is less than 1 or greater than 31, 1 or 31 is assigned automatically.

If the Type or WeekOfMonth property is set to other values, the DayNumber property is ignored.

See the DxSchedulerRecurrenceInfo class description for more information and an example.

See Also