ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
  • Limits
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
Vertical (Property)
In french: Vertical
The Vertical property is used to:
  • Determine if a control is oriented horizontally or vertically.
  • WINDEV Change the orientation of Table controls. A Table control can be displayed vertically (standard mode) or horizontally. In this case, the columns of the standard mode become the rows of the Table control.
  • WINDEV Change the orientation of Looper controls. A Looper control can be displayed vertically (standard mode) or horizontally.
Remarks:
  • The orientation of a control can be defined in the "General" tab of the control description.
  • Java The Vertical property can only be used on Progress Bar controls.
  • WEBDEV - Server codePHP The Vertical property is only available for Scheduler controls.
Example
WINDEV
// Find out the orientation of "SCROLL_Scrollbar" control
ResOrient = SCROLL_Scrollbar.Vertical
WINDEV
// Switch the TABLE_Customer control to horizontal display
TABLE_Customer.Vertical = False
Syntax

Determining the orientation of controls Hide the details

<Result> = <Control used>.Vertical
<Result>: Boolean
  • True if the specified control is vertical,
  • False if the specified control is horizontal.
<Control used>: Control name
Name of the control to be used.
WINDEV

Changing the orientation of Table controls Hide the details

<Table control>.Vertical = <New direction>
<Table control>: Control name
Name of the Table control to be used.
<New direction>: Boolean
  • True if the Table control must be displayed vertically (standard display mode of Table controls),
  • False if the Table control must be displayed horizontally.
WINDEV

Modifying the orientation of Looper controls Hide the details

<Looper control>.Vertical = <New direction>
<Looper control>: Control name
Name of the Looper control to be used.
<New direction>: Boolean
  • True if the Looper control must be displayed vertically (standard display mode of Looper controls),
  • False if the Looper control must be displayed horizontally.
Remarks

Limits

WINDEV The Vertical property applies only to:
  • Progress Bar controls.
  • Spin controls.
  • Slider controls.
  • Scrollbar controls.
  • Splitter controls.
  • Carousel controls.
  • Table controls.
  • WINDEV Range Slider controls.
  • WINDEV Scheduler controls.
  • WINDEV Looper controls.
Java The Vertical property applies only to Progress Bar controls.
WEBDEV - Server codePHP The Vertical property applies only to Scheduler controls.
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 02/02/2023

Send a report | Local help