ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
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.
Example
IF gbModeModif = True THEN
	AGD_MonAgenda.DéplacementRDV = True
	AGD_MonAgenda.ModificationDuréeRDV = True
	AGD_MonAgenda.SaisieDirecteRDV = True
	AGD_MonAgenda.SélectionPériode = True
ELSE
	AGD_MonAgenda.DéplacementRDV = False
	AGD_MonAgenda.ModificationDuréeRDV = False
	AGD_MonAgenda.SaisieDirecteRDV = False
	AGD_MonAgenda.SélectionPériode = 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 appointment duration can be modified by the user,
  • False if appointment duration 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
  • Real to make the appointment duration modifiable by the user,
  • False to prevent the user from modifying the duration of appointments.
Minimum version required
  • Version 15
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/10/2025

Send a report | Local help