Skip to main content
A newer version of this page is available. .

AppointmentDataStorage.Add(AppointmentType, DateTime, DateTime, String) Method

Adds a new appointment with specific properties to this AppointmentDataStorage.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v19.1.dll

Declaration

public Appointment Add(
    AppointmentType type,
    DateTime start,
    DateTime end,
    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.

end DateTime

A DateTime value that specifies the end 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