BOOL LineTo( int x, int y );
BOOL LineTo( POINT point );
x
Specifies the logical x-coordinate of the endpoint for the line.
y
Specifies the logical y-coordinate of the endpoint for the line.
point
Specifies the endpoint for the line. You can pass either a POINT structure or a CPoint object for this parameter.
Draws a line from the current position up to, but not including, the point specified by x and y (or point). The line is drawn with the selected pen. The current position is set to x,y or to point.
TRUE if the line is drawn; otherwise FALSE.
CDC::MoveTo, CDC::GetCurrentPosition, ::LineTo