AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones de dibujo
  • Drawing a line in an Image control
Drawing a line in an Image control
The following code is used to draw a line in an Image control (IMG_ImageDrawing). The coordinates of the start point and end point of the line are entered by the user in edit controls (EDT_X1, EDT_Y1, EDT_X2, EDT_Y2). The color of the line is selected by the user via a radio button (RADIO_SelectColor).
// Declare the variable
LineColor is int
 
// Declare the drawing in the "IMG_ImageDrawing" control
dStartDrawing(IMG_ImageDrawing)
 
// Retrieve the color of the line
SWITCH RADIO_SelectColor
CASE 1: LineColor = LightRed
CASE 2: LineColor = LightBlue
CASE 3: LineColor = LightGreen
CASE 4: LineColor = LightYellow
END
 
// Draw the line
dLine(EDT_X1, EDT_Y1, EDT_X2, EDT_Y2, LineColor)
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/05/2022

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