[]
Copies properties from the specified Appointment object to this one.
public void CopyFrom(Appointment app, bool includeKeys)
Public Sub CopyFrom(app As Appointment, includeKeys As Boolean)
| Type | Name | Description |
|---|---|---|
| Appointment | app | The Appointment instance to copy. |
| bool | includeKeys | Specifies whether to copy internal keys. |
<p>Set includeKeys to true if you want to receive exact copy
of the specified Appointment object.
Set includeKeys to false in order to copy only descriptive Appointment properties to other Appointment object (for example, if you want to duplicate appointment from one day to another).
Copies properties from the specified Appointment object to this one.
public void CopyFrom(Appointment app, bool includeKeys, bool includeRecurrenceInformation)
Public Sub CopyFrom(app As Appointment, includeKeys As Boolean, includeRecurrenceInformation As Boolean)
| Type | Name | Description |
|---|---|---|
| Appointment | app | The Appointment instance to copy. |
| bool | includeKeys | Specifies whether to copy internal keys. |
| bool | includeRecurrenceInformation | Specifies whether to copy recurrence information if any. |
<p>Set includeKeys to true if you want to receive exact copy
of the specified Appointment object.
Set includeKeys to false in order to copy only descriptive Appointment properties to other Appointment object (for example, if you want to duplicate appointment from one day to another).
Set includeRecurrenceInformation to false to exclude RecurrenceState, ParentRecurrence and RecurrencePattern information.