Version

MoveAppointment Method (DayViewRecordReplayServer)

Moves the appointment to a new owner, start time, and/or end time
Syntax
'Declaration
 
Public Sub MoveAppointment( _
   ByVal oldOwnerName As System.String, _
   ByVal AppointmentSubject As System.String, _
   ByVal oldStartTime As System.String, _
   ByVal oldEndTime As System.String, _
   ByVal newOwnerName As System.String, _
   ByVal newStartTime As System.String, _
   ByVal newEndTime As System.String _
) 
public void MoveAppointment( 
   System.string oldOwnerName,
   System.string AppointmentSubject,
   System.string oldStartTime,
   System.string oldEndTime,
   System.string newOwnerName,
   System.string newStartTime,
   System.string newEndTime
)

Parameters

oldOwnerName
The name of the appointment's original owner
AppointmentSubject
The subject of the appointment
oldStartTime
The original start time of the appointment, passed as a string
oldEndTime
The original end time of the appointment, passed as a string
newOwnerName
The name of the appointment's new owner
newStartTime
The new start time of the appointment, passed as a string
newEndTime
The new end time of the appointment, passed as a string
Remarks

OwnerName can be set to "[Unassigned]" or "" if appointment grouping is not being used

Requirements

Target Platforms: 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