|
|
|
|
|
ModificationDurationAPT (Property) In french: ModificationDuréeRDV
The ModificationDurationAPT property is used to determine and specify if the user can modify the duration of an appointment in a Scheduler or Organizer control. This property is equivalent to the "Modification of the duration" option found in the "Details" tab of the description window of the Scheduler and Organizer controls.
IF gbModifMode = True THEN ORG_MyOrganizer.MovementAPT = True ORG_MyOrganizer.ModificationDurationAPT = True ORG_MyOrganizer.DirectInputAPT = True ORG_MyOrganizer.PeriodSelection = True ELSE ORG_MyOrganizer.MovementAPT = False ORG_MyOrganizer.ModificationDurationAPT = False ORG_MyOrganizer.DirectInputAPT = False ORG_MyOrganizer.PeriodSelection = False END
Syntax
Finding out whether the user can modify the duration of an appointment Hide the details
<Result> = <Control used>.ModificationDurationAPT
<Result>: Boolean - True if the duration of the appointments can be modified by the user,
- False if the duration of the appointments cannot be modified by the user.
<Control used>: Control name Name of the Organizer or Scheduler control used.
Allowing of preventing the user from changing the duration of appointments Hide the details
<Control used>.ModificationDurationAPT = <Modifiable Duration>
<Control used>: Control name Name of the Organizer or Scheduler control used. <Modifiable Duration>: Boolean - True to allow the duration of appointments to be modified by the user,
- False to prevent the user from modifying the duration of appointments.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|