CDC::LineTo

Draws a line from the current position up to, but not including, the point specified by x and y (or point).

BOOL LineTo( 
   int x, 
   int y  
); 
BOOL LineTo( 
   POINT point  
);

Parameters

  • 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.

Return Value

Nonzero if the line is drawn; otherwise 0.

Remarks

The line is drawn with the selected pen. The current position is set to x,y or to point.

Example

See the example for CRect::CenterPoint.

Requirements

Header: afxwin.h

See Also

Reference

CDC Class

Hierarchy Chart

CDC::MoveTo

CDC::GetCurrentPosition

LineTo

CPoint Class

POINT Structure