ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage properties / Properties associated with reports and controls
  • "Label" report
  • Limit
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
The LabelWidth property is used to:
  • Find out the width of labels in a "Label" report.
  • Modify the width of labels in a "Label" report.
Note: Label width was defined when the report was created in label format.. This option can be obtained and changed in the report editor, via "Format of labels" in the context menu of the report.
Example
// Augmente la largeur des étiquettes de l'état "ETAT_EtiqClient"
ETAT_EtiqClient.LargeurEtiquette = ETAT_EtiqClient.LargeurEtiquette + 35
// Est équivalent à : ETAT_EtiqClient.LargeurEtiquette += 35
Syntax

Finding out the width of labels Hide the details

<Result> = <Report used>.LabelWidth
<Result>: Real
Width (in millimeters) of labels found in the specified report.
<Report used>: Report name
Name of "Label" report to use.

Modifying the width of labels Hide the details

<Report used>.LabelWidth = <New width>
<Report used>: Report name
Name of "Label" report to use.
<New width>: Real
New width (in millimeters) for the labels found in the specified report.
Remarks

"Label" report

  • To determine or change the height of labels in a "Label" report, use the LabelHeight property.
  • To determine or change the horizontal spacing between labels in a "Label" report, use the HSpace property.
  • To determine or change the vertical spacing between labels in a "Label" report, use the VSpace property.
  • To determine or change the number of labels printed across the page, use the NbLabel property.

Limit

The LabelWidth 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: 09/24/2024

Send a report | Local help