AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Propiedades WLanguage / Propiedades varias
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 Thickness property is used to:
  • Find out and modify the line thickness for a series (Line charts only).
    Remark: This property is equivalent to grLineThickness.
  • WINDEV Find out and modify the thickness of the line for a Wire control.
Example
// Thickness of series 2
CHART_MyChart[2].Thickness = 5
WINDEV
// Create and initialize a Wire control
// This wire links the BTN_ControlA and BTN_ControlB controls
WireName is Control
 
WireName <- ControlCreate("", typWire)
WireName.StartControl = BTN_ControlA
WireName.EndControl = BTN_ControlB
WireName.ShapeExtremityStart = shapeDiamond
WireName.ShapeExtremityEnd = shapeCircle
WireName.ShapeExtremitySize = 8
WireName.Thickness = 5
Syntax

Finding out the thickness of a series or Wire control Hide the details

<Result> = <Element>.Thickness
<Result>: Integer
Thickness of the element.
<Element>: Character string
  • Series to use. Use the following notation: <Chart name>[<Series number>].
  • WINDEV Name of the Wire control to be used.

Modifying the thickness of a series or Wire control Hide the details

<Element>.Thickness = <New thickness>
<Element>: Character string
  • Series to use. Use the following notation: <Chart name>[<Series number>].
  • WINDEV Name of the Wire control to be used.
<New thickness>: Character string
  • Thickness of the specified series. This parameter can correspond to a value greater than 0. The line thickness is set to 1 by default.
  • WINDEV Thickness of the Wire control. This parameter can correspond to a value greater than 0. The line thickness is set to 2 by default.
Versión mínima requerida
  • Versión 10
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 03/07/2023

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