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

DxScheduler.StartDate Property

Specifies the Scheduler’s start date.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public DateTime StartDate { get; set; }

Property Value

Type Description
DateTime

A DateTime object that specifies the Scheduler’s start date.

Remarks

The StartDate property specifies the visible date at Scheduler’s startup.

This example shows the start date set to January 7, 1990:

<DxScheduler StartDate="@(new DateTime(1990, 01, 07, 00, 00, 00))" DataStorage="@DataStorage">
    <DxSchedulerWeekView ShowWorkTimeOnly="true"></DxSchedulerWeekView>
</DxScheduler>

Run Demo: Scheduler — Week View

To track changes made to the StartDate property’s value, handle the StartDateChanged event.

See Also