Shows the Edit Appointment dialog for the creation of a new Appointment object with the specified parameters.

Namespace:  C1.Silverlight.Schedule
Assembly:  C1.Silverlight.Schedule (in C1.Silverlight.Schedule.dll)

Syntax

C#
public void NewAppointmentDialog(
	DateTime start,
	DateTime end,
	Nullable<bool> allDayEvent,
	BaseObject groupOwner
)
Visual Basic
Public Sub NewAppointmentDialog ( _
	start As DateTime, _
	end As DateTime, _
	allDayEvent As Nullable(Of Boolean), _
	groupOwner As BaseObject _
)

Parameters

start
Type: System..::..DateTime
The start value.
end
Type: System..::..DateTime
The end value.
allDayEvent
Type: System..::..Nullable<(Of <(<'Boolean>)>)>
The Boolean value specifying whether appointment is all-day event.
groupOwner
Type: C1.C1Schedule..::..BaseObject
The object determining SchedulerGroupItemen for which appointment should be created.

See Also