AppointmentDataStorage.Add(AppointmentType, DateTime, TimeSpan, String) Method
Adds a new appointment with specific properties to this AppointmentDataStorage.
Namespace: DevExpress.XtraScheduler
Assembly: DevExpress.XtraScheduler.v26.1.dll
Declaration
public Appointment Add(
AppointmentType type,
DateTime start,
TimeSpan duration,
string subject
)
Parameters
| Name | Type | Description |
|---|---|---|
| type | AppointmentType | An Appointment enumeration value that specifies the appointment type. |
| start | DateTime | A DateTime value that specifies the start of a time interval related to the appointment. |
| duration | TimeSpan | A TimeSpan value that specifies the duration of a time interval related to the appointment. |
| subject | String | A String value that specifies the appointment subject. |
Returns
| Type | Description |
|---|---|
| Appointment | An Appointment object that is the added appointment. |
See Also