AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Propiedades WLanguage / Propiedades de reportes y controles asociados
  • "Label" report
  • Limit
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 LabelWidth property is used to:
  • Find out the width of labels in a "Label" report.
  • Modify the width of labels in a "Label" report.
Remark: The width of labels was defined when creating the Label report. This option can be obtained and changed in the report editor, via "Format of labels" in the context menu of the report.
Example
// Increases the width of labels in the "RPT_CustLabel" report
RPT_CustLabel.LabelWidth = RPT_CustLabel.LabelWidth + 35
// Is equivalent to: RPT_CustLabel.LabelWidth += 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.
Versión mínima requerida
  • Versión 9
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 26/05/2022

Señalar un error o enviar una sugerencia | Ayuda local