|
|
|
|
|
MovementAPT (Property) In french: DéplacementRDV
The MovementAPT property allows you to know and specify whether users can move appointments: - in a Scheduler control,
- in an Organizer control.
This property corresponds to the "Move" option in the "Details" tab of the Scheduler and Organizer controls description windows.
// Management options of a Scheduler control IF gbModifMode = True THEN SCH_MySchedule.MovementAPT = True SCH_MySchedule.DirectInputAPT = True SCH_MySchedule.PeriodSelection = True ELSE SCH_MySchedule.MovementAPT = False SCH_MySchedule.DirectInputAPT = False SCH_MySchedule.PeriodSelection = False END
// Management options of an Organizer control IF gbModifMode = True THEN ORG_MyOrganizer.MovementAPT = True ORG_MyOrganizer.PeriodSelection = True ORG_MyOrganizer.DirectInputAPT = True IF NOT InAndroidMode() _AND_ NOT IniOSMode() THEN ORG_MyOrganizer.ModificationDurationAPT = True END ELSE ORG_MyOrganizer.MovementAPT = False ORG_MyOrganizer.PeriodSelection = False ORG_MyOrganizer.DirectInputAPT = False IF NOT InAndroidMode() _AND_ NOT IniOSMode() THEN ORG_MyOrganizer.ModificationDurationAPT = False END END
Syntax
Finding out whether a user can move an appointment Hide the details
<Result> = <Control used>.MovementAPT
<Result>: Boolean - True if the appointments can be moved by the user,
- False if the appointments cannot be moved by the user.
<Control used>: Control name Name of the control used. This control can correspond to: - an Organizer control.
- a Scheduler control.
Allowing (or not) the appointments to be moved by the user Hide the details
<Control used>.MovementAPT = <Movable>
<Control used>: Control name Name of the control used. This control can correspond to: - an Organizer control.
- a Scheduler control.
<Movable>: Boolean - True to allow the appointments to be moved by the user,
- False not to allow the appointments to be moved by the user.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|