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 ElementHeight property is used to:
  • WINDEV Find out or modify the height of the elements in an Organization Chart control.
  • Find out or modify the height of the cells in a Dashboard control.
Remarks:
  • WINDEV The minimum height of the elements found in an Organization Chart control is defined in the "General" tab of the description window of the Organization Chart control.
  • The height of a cell found in a Dashboard control is defined in the "Details" tab of the description of a Dashboard control.
  • WEBDEV - Server codeAndroidiPhone/iPadIOS Widget This property is available for Dashboard controls only.
Example
WINDEV
ORG_Main.ElementWidth = 200
ORG_Main.ElementHeight = 100
 
IF CBOX_Zoom = True THEN
ORG_Main.ElementWidth = 400
ORG_Main.ElementHeight = 200
END
// Reduce the height of all cells in the Dashboard control
IF DASH_Dashboard.ElementHeight > 50 THEN
DASH_Dashboard.ElementHeight = 50
END
Syntax

Finding out the height of elements or cells Hide the details

<Result> = <Control used>.ElementHeight
<Result>: Integer
  • WINDEV Height (in pixels) of the elements found in the specified Organization Chart control.
  • Height (in pixels) of the cells found in the specified Dashboard control.
<Control used>: Control name
  • WINDEV Name of Organization Chart control to use.
  • Name of the Dashboard control to be used.

Modifying the height of the elements or cells Hide the details

<Control used>.ElementHeight = <New height>
<Control used>: Control name
  • WINDEV Name of Organization Chart control to use.
  • Name of the Dashboard control to be used.
<New height>: Integer
  • WINDEV New height (in pixels) of elements found in the specified Organization Chart control.
  • New height (in pixels) of the cells found in the specified Dashboard control.
Remarks
The margin between the elements is added to the height of the elements.
Minimum version required
  • Version 17
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/07/2022

Send a report | Local help