ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Scheduler functions
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
Makes a day visible or invisible in a Scheduler control.
Remark: The day that was made invisible will no longer appear if the Scheduler control is displayed on a weekly basis.
Example
// Don't display Wednesday
ThisWednesday is Date = DateSys()
ThisWednesday.Day += 3 - DateToDay(ThisWednesday)
SchedulerDateVisible(SCH_MyScheduler, ThisWednesday, False)
Syntax

Making a day visible or invisible Hide the details

SchedulerDateVisible(<Scheduler control> , <Date> , <Visible>)
<Scheduler control>: Control name
Name of Scheduler control to use.
<Date>: Character string or Date variable
Date to be made visible or invisible. This date is in "YYYYMMDD" format.
<Visible>: Boolean
  • True to make the date visible,
  • False to make the date invisible.

Finding out whether a day is visible or invisible Hide the details

<Result> = SchedulerDateVisible(<Scheduler control> , <Date>)
<Result>: Boolean
  • True if the date is visible,
  • False if the date is invisible.
<Scheduler control>: Control name
Name of Scheduler control to use.
<Date>: Character string or Date variable
Date to use. This date is in "YYYYMMDD" format.
Remarks
  • The invisible days are "skipped" when drawing the Scheduler control.
    For example, if a Wednesday is invisible, the Scheduler control displays Tuesday and then Thursday.
  • The display is refreshed immediately or when changing period:
    • If the Scheduler control currently displays only one day and that day becomes invisible, the day is made invisible when the day or period is changed.
    • If the Scheduler control displays 1 week or 1 month, the invisible days are not displayed but the Scheduler control does not display more days.
    • If the Scheduler control displays X days, the invisible days are not counted in the X days. For example, is the Scheduler control displays 4 days while Wednesday is invisible, the 4 days displayed will be: Monday, Tuesday, Thursday, Friday.
  • If an appointment lasts during several days (among which 1 invisible day), it will visually appear as being shorter.
Component: wd290mdl.dll
Minimum version required
  • Version 22
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help