ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
  • Available display formats
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 MaskTitleTime property is used to get or change the mask used for the title of time columns:
  • WINDEV in an Organizer control.
  • in a Scheduler control.
  • WINDEV in a TimeLine control.
Example
SCH_Scheduler.MaskTitleTime = "HH:MM:SS" // Displays "01:00:00"
WINDEV
TL_TimeLine.MaskTitleTime = "SS'CC" // Displays "01'23"
Syntax

Finding out the mask for the titles of time columns Hide the details

<Result> = <Control used>.MaskTitleTime
<Result>: Character string
Current display mask for the titles of time columns. This mask corresponds to:
  • " " (empty string) if the default mask is used.
  • the display mask used (see Remarks).
<Control used>: Control name
Name of the control to be used:
  • WINDEV Organizer control.
  • Scheduler control.
  • WINDEV TimeLine control.

Modifying the mask for the titles of time columns Hide the details

<Control used>.MaskTitleTime = <New mask>
<Control used>: Control name
Name of the control to be used:
  • WINDEV Organizer control.
  • Scheduler control.
  • WINDEV TimeLine control.
<New mask>: Character string
New display mask for the titles of time columns. This mask can correspond to:
  • a preset mask or a custom mask (see the Remarks).
  • "" (empty string) to use the default display mask.
Remarks

Available display formats

The display format can correspond to:
  • a preset mask:
    • 'HH:MM'
    • 'HH:MM:SS'
    • 'HH:MM:SS:CC'
    • 'HH:MM:SS:CCC'
    • 'HH:MM AM'
  • a custom mask. In this case, you have the ability to use the following elements:
    • 'HH' (hour)
    • 'MM' (minutes)
    • 'SS' (seconds)
    • 'CC' or 'CCC' (hundredths of a second on 2 or 3 characters)
    • 'AM' (for the times in AM/PM format).
Minimum version required
  • Version 18
This page is also available for…
Comments
Also for Webdev
It would be interesting for me to have this property in the Organizer control in WebDev. I need to change the time format of the Organizer even when using the same language.
Josep Castany
10 Feb. 2016

Last update: 11/03/2022

Send a report | Local help