ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
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.
Example
// 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.
Minimum version required
  • Version 17
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 11/03/2022

Send a report | Local help