Operators |
draw_line — Draw a line.
draw_line( : : WindowHandle : Row1, Column1, Row2, Column2)
draw_line returns the parameter for a line, which has been created interactively by the user in the window.
To create a line you have to press the left mouse button determining a start point of the line. While keeping the button pressed you may “drag” the line in any direction. After another mouse click in the middle of the created line you can move it. If you click on one end point of the created line, you may move this point. Pressing the right mouse button terminates the procedure. On macOS draw_line can also be terminated by pressing the escape key.
After terminating the procedure the line is not visible in the window any longer.
If used in a buffer window, mouse events have to be supplied by the application, while the draw operator must be run in another thread.
Window handle.
Row index of the first point of the line.
Column index of the first point of the line.
Row index of the second point of the line.
Column index of the second point of the line.
draw_line(WindowHandle,Row1,Column1,Row2,Column2) gen_contour_polygon_xld (Line, [Row1,Row2], [Column1,Column2]) dev_display (Line)
draw_line returns 2 (H_MSG_TRUE), if the window is valid and the needed drawing mode (see set_insert) is available. If necessary, an exception is raised.
reduce_domain, disp_line, set_colored, set_line_width, set_draw, set_insert
draw_line_mod, gen_rectangle1, draw_circle, draw_ellipse, set_insert
Foundation
Operators |