Appointment Interface
An interface that defines an appointment in the Scheduler.
Namespace: DevExpress.XtraScheduler
Assembly: DevExpress.XtraScheduler.v23.1.Core.dll
NuGet Package: DevExpress.Scheduler.Core
Declaration
public interface Appointment :
IPersistentObject,
IBatchUpdateable,
IDisposable,
IIdProvider
Public Interface Appointment
Inherits IPersistentObject,
IBatchUpdateable,
IDisposable,
IIdProvider
Related API Members
The following members return Appointment objects:
Related API Members
The following members return Appointment objects:
Related API Members
The following members return Appointment objects:
Remarks
For more information on appointments, review the following topics:
- WinForms Scheduler - Appointments
- WinForms Scheduler - Visual Elements - Appointments
- ASP.NET Scheduler - Appointments
- ASP.NET Scheduler - Visual Elements - Appointments
- ASP.NET MVC Scheduler - Visual Elements - Appointments
WPF Scheduler implements the AppointmentItem class that represents an appointment. Review the Appointments section for more information.
Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Appointment interface.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
int copyAppointmentID = Convert.ToInt32(hdCopiedAppointmentID.Value);
Appointment sourceAppointment = ASPxScheduler1.Storage.Appointments.GetAppointmentById(copyAppointmentID);
if(sourceAppointment != null) {
Dim copyAppointmentID As Integer = Convert.ToInt32(hdCopiedAppointmentID.Value)
Dim sourceAppointment As Appointment = ASPxScheduler1.Storage.Appointments.GetAppointmentById(copyAppointmentID)
If sourceAppointment IsNot Nothing Then