Skip to main content
All docs
V25.1
  • ISchedulerAppointmentActions.SaveAppointmentAsync(DxSchedulerAppointmentItem) Method

    Saves appointment changes to a data source.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    Task<DxSchedulerAppointmentItem> SaveAppointmentAsync(
        DxSchedulerAppointmentItem appointment = null
    )

    Optional Parameters

    Name Type Default Description
    appointment DxSchedulerAppointmentItem null

    The appointment to be saved. null to save the appointment that is displayed in the edit form.

    Returns

    Type Description
    Task<DxSchedulerAppointmentItem>

    An asynchronous operation that returns the saved appointment. Returns null if the appointment cannot be saved.

    Remarks

    Refer to the DxScheduler.SaveAppointmentAsync description for more information and an example.

    See Also