ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Drawing functions
  • Coordinates
  • Pattern and PHP
  • Drawing in Browser code
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
Draws a line in an Image control.
Linux Caution: A specific configuration is required to use this function in Linux. For more details, see The drawings.
Example
// Dessin d'une ligne jaune clair dans un champ Image
IMG_Dessin.DessineLigne(10, 10, 50, 50, LightYellow)
Syntax
<Image control>.DrawLine(<X1> , <Y1> , <X2> , <Y2> [, <Line color> [, <Line thickness>]])
<Image control>: Control name
Name of the Image control to be used.
<X1>: Integer
X-coordinate (in pixels) of the start point of the line.
<Y1>: Integer
Y-coordinate (in pixels) of the start point of the line.
<X2>: Integer
X-coordinate (in pixels) of the end point of the line.
<Y2>: Integer
Y-coordinate (in pixels) of the end point of the line.
<Line color>: Integer or constant (optional)
Line color. This color can correspond to:If this parameter is not specified, the line color:
  • is Transparent if the function <Image>.Pen has not been used before.
    New in version 2024
    In the case of an Variable type Image, the row will have the black Color..
  • corresponds to the color specified in the last call to <Image>.Pen.
<Line thickness>: Optional integer
Thickness (in pixels) of the line to draw. If this parameter is not specified, the value taken into account can be:
Remarks

Coordinates

Coordinates are specified with respect to the upper-left corner of the image or Image control (coordinates: (0,0)).
Related Examples:
The drawing functions Unit examples (WINDEV): The drawing functions
[ + ] Using the main drawing functions of WINDEV to:
- Initialize an Image control for drawing
- Draw simple shapes
- Write a text into a drawing
- Change the color in a drawing
Business / UI classification: Neutral code
Component: wd290pnt.dll
Minimum version required
  • Version 24
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 01/17/2024

Send a report | Local help