[]
Shows the Edit Appointment dialog for the creation of a new Appointment.
public void NewAppointmentDialog(VisualInterval forInterval)
Type | Name | Description |
---|---|---|
VisualInterval | forInterval | VisualInterval that determines an initial period of time for a creating Appointment. |
This methods implements the NewAppointmentDialogCommand command.
Shows the Edit Appointment dialog for the creation of a new Appointment object. Edit Appointment dialog is initialized according to the SelectedDateTimeInterval property value if it is not null; or according to the current date and time and the VisualIntervalScale property value otherwise.
public void NewAppointmentDialog()
This methods implements the NewAppointmentDialogCommand command.
Shows the Edit Appointment dialog for the creation of a new Appointment object with the specified parameters.
public void NewAppointmentDialog(DateTime start, DateTime end, bool? allDayEvent)
Type | Name | Description |
---|---|---|
DateTime | start | The start value. |
DateTime | end | The end value. |
bool? | allDayEvent | The bool value specifying whether appointment is all-day event. |
Shows the Edit Appointment dialog for the creation of a new Appointment object with the specified parameters.
public void NewAppointmentDialog(DateTime start, DateTime end, bool? allDayEvent, BaseObject groupOwner)
Type | Name | Description |
---|---|---|
DateTime | start | The start value. |
DateTime | end | The end value. |
bool? | allDayEvent | The bool value specifying whether appointment is all-day event. |
BaseObject | groupOwner | The object determining SchedulerGroupItemen for which appointment should be created. |
Shows the Edit Appointment dialog for the creation of a new Appointment object with the specified start and end values.
public void NewAppointmentDialog(DateTime start, DateTime end)
Type | Name | Description |
---|---|---|
DateTime | start | The start value. |
DateTime | end | The end value. |
The value of the AllDayEvent property is determined according the start and end values.
Shows the Edit Appointment dialog for the creation of a new Appointment object with the specified start and end values.
public void NewAppointmentDialog(DateTime start, DateTime end, BaseObject groupOwner)
Type | Name | Description |
---|---|---|
DateTime | start | The start value. |
DateTime | end | The end value. |
BaseObject | groupOwner | The object determining SchedulerGroupItemen for which appointment should be created. |
The value of the AllDayEvent property is determined according the start and end values.