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

DxScheduler.CreateAppointmentAsync(DateTime, DateTime, Boolean, Object) Method

Creates a new appointment for the Scheduler, but does not save it to a data source.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
public Task<DxSchedulerAppointmentItem> CreateAppointmentAsync(
    DateTime start,
    DateTime end,
    bool allDay,
    object resourceId
)

#Parameters

Name Type Description
start DateTime

Specifies the appointment’s start date.

end DateTime

Specifies the appointment’s end date.

allDay Boolean

Specifies whether the appointment is scheduled for the entire day or several days.

resourceId Object

Specifies the identifier of the resource object associated with the appointment.

#Returns

Type Description
Task<DxSchedulerAppointmentItem>

An asynchronous operation that returns the created appointment. Returns null if the appointment can not be created.

#Remarks

You can use the CreateAppointmentAsync method to create a new appointment for the Scheduler. Then you can pass the created appointment to the ShowAppointmentEditFormAsync(Boolean, DxSchedulerAppointmentItem) method to show the created appointment in the edit form. To save the appointment to a data source, a user can click the Save button or you can use the SaveAppointmentAsync(DxSchedulerAppointmentItem) method.

Note that the method returns null in the following cases:

See Also