LineTo
A version of this page is also available for
4/8/2010
This function draws a line from the current position up to, but not including, the specified point.
Syntax
WINGDIAPI BOOL WINAPI LineTo(
HDC hdc,
int nXEnd,
int nYEnd
);
Parameters
- hdc
[in] Handle to a device context.
- nXEnd
[in] Integer that specifies the x-coordinate, in logical units, of the endpoint of the line.
- nYEnd
[in] Integer that specifies the y-coordinate, in logical units, of the endpoint of the line.
Return Value
A non-zero value indicates success.
Zero indicates failure.
To get extended error information, call GetLastError.
Remarks
LineTo draws the line by using the current pen.
If LineTo succeeds, LineTo sets the current position to the specified endpoint.
If hdc specifies a mirrored device context, the horizontal coordinates increase from right-to-left rather than from left-to-right.
For information about blitting to displays with right-to-left orientations, see Creating Bitmaps.
Requirements
Header | windows.h |
Library | coredll.lib |
Windows Embedded CE | Windows CE .NET 4.0 and later |
Windows Mobile | Windows Mobile Version 5.0 and later |