AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones Agenda
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Makes a day visible or invisible in an Organizer control.
Note: The day made invisible will no longer appear if the calendar is displayed on a weekly basis..
Ejemplo
// Ne pas afficher le mercredi
CeMercredi is Date = DateSys()
CeMercredi.Jour += 3 - DateToDay(CeMercredi) 
OrganizerDateVisible(AGD_MonAgenda, CeMercredi, False)
Sintaxis

Making a day visible or invisible Ocultar los detalles

OrganizerDateVisible(<Organizer control> , <Date> , <Visible>)
<Organizer control>: Control name
Name of Organizer control to use (found in a window)
<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 Ocultar los detalles

<Result> = OrganizerDateVisible(<Organizer control> , <Date>)
<Result>: Boolean
  • True if the date is visible,
  • False if the date is invisible.
<Organizer control>: Control name
Name of Organizer control to use (found in a window)
<Date>: Character string or Date variable
Date to use. This date is in "YYYYMMDD" format.
Observaciones
  • The invisible days are "skipped" when drawing the organizer.
    For example, if a Wednesday is invisible, the Organizer control displays Tuesday and then Thursday.
  • The display is refreshed immediately or when changing period:
    • If the Organizer 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 Organizer control displays 1 week, invisible days are not displayed but the Organizer control does not display more days.
    • If the Organizer control displays 1 month, the invisible days are displayed (there are no "holes" in the calendar).
  • If an appointment lasts during several days (among which 1 invisible day), it will visually appear as being shorter.
Clasificación Lógica de negocio / UI: Código UI
Componente: wd300obj.dll
Versión mínima requerida
  • Versión 22
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 21/09/2024

Señalar un error o enviar una sugerencia | Ayuda local