Version

AppointmentsDraggingEventArgs Constructor

Creates a new instance of the AppointmentsDraggingEventArgs class.
Syntax
'Declaration
 
Public Function New( _
   ByVal phase As AppointmentDragPhase, _
   ByVal appointments As ReadOnlyAppointmentsCollection, _
   ByVal initialDateTime As Date, _
   ByVal newDateTime As Date, _
   ByVal initialOwner As Owner, _
   ByVal newOwner As Owner, _
   ByVal keyState As Keys _
)
public AppointmentsDraggingEventArgs( 
   AppointmentDragPhase phase,
   ReadOnlyAppointmentsCollection appointments,
   DateTime initialDateTime,
   DateTime newDateTime,
   Owner initialOwner,
   Owner newOwner,
   Keys keyState
)

Parameters

phase
Determines the phase of the drag operation that this event firing represents, i.e., whether it is beginning, in progress, or ending.
appointments
A read-only collection of the appointments on which the drag operation is being performed.
initialDateTime
The date over which the cursor was positioned when the operation was initiated.
newDateTime
The date closest to the current cursor position.
initialOwner
The Owner of the appointments at the time the drag operation was initiated.
newOwner
The Owner of the appointments closest to the current cursor position.
keyState
The state of the keyboard at the time the event was fired.
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