Version

AppointmentsDragComplete Event

Fired after a drag/drop operation that contains one or more Appointments has been completed.
Syntax
'Declaration
 
Public Event AppointmentsDragComplete As AppointmentsDragCompleteEventHandler
public event AppointmentsDragCompleteEventHandler AppointmentsDragComplete
Event Data

The event handler receives an argument of type AppointmentsDragCompleteEventArgs containing data related to this event. The following AppointmentsDragCompleteEventArgs properties provide information specific to this event.

PropertyDescription
Canceled Returns whether the drag/drop operation was terminated by being canceled by the end user.
Remarks

The AppointmentsDragComplete event is fired after a drag operation that includes Appointments has been completed.

To determine what Appointments have been dragged, use the SelectedAppointments collection.

Note: By default, the SelectedAppointments collection is cleared when the ActiveOwner is changed. This can be prevented by handling the BeforeActiveOwnerChanged event and setting the BeforeActiveOwnerChangedEventArgs.ClearSelectedActivities property to false.

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