ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
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 Pane property is used to:
  • Find out the pane tabs associated with a control.
  • Define the pane tabs associated with a control.
Remark: This property operates on the standard tab panes only. This property does not work on the dynamic tab panes.
Example
// Associate the Validate button to panes 1, 2 and 4
BTN_Validate.Pane = "1,2,4"

// Find out the panes associated with a button
IF BTN_Validate.Pane [=] "2" THEN Info("The control is associated with pane 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 panes associated with the control, using the following format:
    "<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 panes associated with the control, using the following format:
    "<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.
Minimum version required
  • Version 19
Comments
Click [Add] to post a comment

Last update: 02/26/2024

Send a report | Local help