ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Graphic string functions
  • Coordinates
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Builds a sequence of characters containing a line.
WINDEV This sequence of characters is used to draw a line:
  • in an element of a List Box or Combo Box control.
  • in the title bar and/or status bar of a window.
  • in a Static Text control.
Example
WINDEV
// Draw a green line in an element of "LIST_Figure" control
ListAdd(LIST_Figure, gLine(0, 0, 25, 18, LightGreen))
Syntax
<Result> = gLine(<X1> , <Y1> , <X2> , <Y2> [, <Color>])
<Result>: Character string
Sequence of characters containing a line.
WINDEV This sequence of characters can be:
WEBDEV - Server code This sequence of characters is not interpreted by the controls in WEBDEV. This function can be used to format the string returned by a WEBDEV web service consumed by a WINDEV or WINDEV Mobile application.
<X1>: Real
X-coordinate (in pixels) of the start point of the line.
<Y1>: Real
Y-coordinate (in pixels) of the start point of the line.
<X2>: Real
X-coordinate (in pixels) of the end point of the line. This ending point is not drawn.
<Y2>: Real
Y-coordinate (in pixels) of the end point of the line. This ending point is not drawn.
<Color>: Integer or constant (optional)
Line color. This color can correspond to:
If this parameter is not specified, the color of the line corresponds to the color of the current text (defined by gPen).
Remarks

Coordinates

All the coordinates are expressed in pixels in relation to the upper-left corner of the element used (in relation to the upper-left corner of the row found in the List Box or Combo Box control for example).
Component: wd300mdl.dll
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