[]
Shows the Edit Appointment dialog for the creation of a new C1.Schedule.Appointment.
public void NewAppointmentDialog(VisualInterval forInterval)
Type | Name | Description |
---|---|---|
VisualInterval | forInterval |
a creating C1.Schedule.Appointment. |
This methods implements the NewAppointmentDialogCommand command.
Shows the Edit Appointment dialog for the creation of a new C1.Schedule.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 C1.Schedule.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 C1.Schedule.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 C1.Schedule.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 C1.Schedule.Appointment.AllDayEvent property is determined according the start and end values.
Shows the Edit Appointment dialog for the creation of a new C1.Schedule.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 C1.Schedule.Appointment.AllDayEvent property is determined according the start and end values.