ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with reports 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 LabelHeight property is used to:
  • Find out the height of labels in a Label report.
  • Modify the height of labels in a Label report.
Remark: The height of labels was defined when creating the "Label" report. This option can be known and/or modified in the format of the page ("Format of labels" from the popup menu of the report).
Example
// Increases the height of labels in the "RPT_CustLabel" report
RPT_CustLabel.LabelHeight = RPT_CustLabel.LabelHeight + 35
// Is equivalent to: RPT_CustLabel.LabelHeight += 35
Syntax

Finding out the height of labels in a report Hide the details

<Result> = <Report used>.LabelHeight
<Result>: Real
Height (in millimeters) of the labels found in the specified report.
<Report used>: Report name
Name of the report to be used.

Modifying the height of labels in a report Hide the details

<Report used>.LabelHeight = <New height>
<Report used>: Report name
Name of the report to be used.
<New height>: Real
New height (in millimeters) for the labels found in the specified report.
Remarks
The LabelHeight property applies only to "Label" reports.
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help