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 / Propiedades WLanguage / Propiedades de ventanas, páginas y controles
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
The property Pane property allows you to:
  • Find out the pane tabs associated with a control.
  • Define the pane tabs associated with a control.
Remark: This property only works on classic tab shutters.. This property does not work on the dynamic tab panes.
Example
// Associer le bouton Valider aux volets 1, 2 et 4
BTN_Valider.Volet = "1,2,4"

// Connaître les volets associés à un bouton
IF BTN_Valider.Volet [=] "2" THEN Info("Le champ est associé au volet 2")
Syntax

Finding out the pane tabs associated with a control Hide the details

<Result> = <Control used>.Pane
<Result>: Integer or character string
  • Pane number of the pane associated with the control. The pane number of the first pane is 1.
  • Character string containing the list of tab panes associated with the field in the form:
    "<Number pane 1>,<Number pane 2>,...,<Number pane N>"
  • 0 if the control does not belong to any pane.
<Control used>: Control name
Name of the control to be used.

Define the pane tabs associated with a control Hide the details

<Control used>.Pane = <New value>
<Control used>: Control name
Name of the control to be used.
<New value>: Integer or character string
  • Pane number of the pane associated with the control. The pane number of the first pane is 1.
  • Character string containing the list of tab panes associated with the field in the form:
    "<Number pane 1>,<Number pane 2>,...,<Number pane N>"
Remarks
If the control does not belong to any tab, it cannot be associated with one or more panes.
Versión mínima requerida
  • Versión 19
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 10/05/2025

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