A newer version of this page is available.
Switch to the current version.
SchedulerDataStorage.CreateAppointment(AppointmentType) Method
Creates an appointment of the specified type.
Namespace: DevExpress.XtraScheduler
Assembly: DevExpress.XtraScheduler.v18.2.dll
Declaration
public Appointment CreateAppointment(
AppointmentType type
)
Public Function CreateAppointment(
type As AppointmentType
) As Appointment
Parameters
Name | Type | Description |
---|---|---|
type | AppointmentType | An AppointmentType enumeration value specifying the type of the created appointment. |
Returns
Type | Description |
---|---|
Appointment | A newly created Appointment object. |
Remarks
Use the CreateAppointment method to create an appointment of the specified type. This method also creates all the required custom fields and adds it to the appointment's CustomFieldCollection, available via the PersistentObject.CustomFields property. To add custom fields to the appointment manually use the PersistentObjectStorage<T>.CreateCustomFields method.
Subsequently use the AppointmentDataStorage.Add method to add a newly created appointment to the storage.
Implements
See Also
Feedback