Version

DisplayAppointmentDialogEventArgs Constructor(Appointment,Boolean,RecurrenceEditType)

Initializes a new DisplayAppointmentDialogEventArgs class with the specified appointment.
Syntax
'Declaration
 
Public Function New( _
   ByVal appointment As Appointment, _
   ByVal isExistingAppointment As Boolean, _
   ByVal recurrenceEditType As RecurrenceEditType _
)
public DisplayAppointmentDialogEventArgs( 
   Appointment appointment,
   bool isExistingAppointment,
   RecurrenceEditType recurrenceEditType
)

Parameters

appointment
Appointment object for which the AppointmentDialog will be displayed.
isExistingAppointment
Boolean indicating if appointment is an existing appointment.
recurrenceEditType
Determines how the appointment is opened for editing; applies only when the appointment is a member of a recurrence, or is itself a recurring appointment root
Remarks

If the isExistingAppointment is false, the Appointment referenced by the CancelableAppointmentEventArgs.Appointment is a new Appointment object. The properties of the Appointment could then be set to initialize the values that are displayed in the appointment dialog.

Note: The recurrenceEditType parameter is only applicable when the appointment is a member of a recurrence, or is itself a recurring appointment root.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also