Vcl.Graphics.TCanvas.LineTo
Delphi
procedure LineTo(X, Y: Integer); override;
C++
virtual void __fastcall LineTo(int X, int Y);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | Vcl.Graphics.pas Vcl.Graphics.hpp |
Vcl.Graphics | TCanvas |
Description
Draws a line on the canvas from PenPos to the point specified by X and Y, and sets the pen position to (X, Y).
Use LineTo to draw a line from PenPos up to, but not including the point (X,Y). LineTo changes the value of PenPos to (X,Y).
The line is drawn using Pen.
Note: If the current Pen does not have a style of psSolid, the line is drawn with a background specified by the current brush.
See Also
Code Examples