Graphics::D rawLines(constPen*,constPoint*,INT) 메서드(gdiplusgraphics.h)
Graphics::D rawLines 메서드는 연결된 선 시퀀스를 그립니다.
구문
Status DrawLines(
[in] const Pen *pen,
[in] const Point *points,
[in] INT count
);
매개 변수
[in] pen
형식: const 펜*
선을 그리는 데 사용되는 펜에 대한 포인터입니다.
[in] points
형식: const Point*
선의 시작점과 끝점을 지정하는 Point 개체의 배열에 대한 포인터입니다.
[in] count
형식: INT
점 배열의 요소 수를 지정하는 정수입니다.
반환 값
형식: 상태
메서드가 성공하면 Status 열거형의 요소인 Ok를 반환합니다.
메서드가 실패하면 Status 열거형의 다른 요소 중 하나를 반환합니다.
설명
각 줄에는 시작점과 끝점이 필요합니다. 각 줄의 끝점은 다음 줄의 시작점입니다.
예제
다음 예제에서는 연결된 선 시퀀스를 그립니다.
VOID Example_DrawLines(HDC hdc)
{
Graphics graphics(hdc);
// Create a Pen object.
Pen blackPen(Color(255, 0, 0, 0), 3);
// Create an array of Point objects that define the lines to draw.
Point point1(10, 10);
Point point2(10, 100);
Point point3(200, 50);
Point point4(250, 300);
Point points[4] = {point1, point2, point3, point4};
Point* pPoints = points;
// Draw the lines.
graphics.DrawLines(&blackPen, pPoints, 4);
}
요구 사항
지원되는 최소 클라이언트 | Windows XP, Windows 2000 Professional [데스크톱 앱만 해당] |
지원되는 최소 서버 | Windows 2000 Server[데스크톱 앱만] |
대상 플랫폼 | Windows |
헤더 | gdiplusgraphics.h(Gdiplus.h 포함) |
라이브러리 | Gdiplus.lib |
DLL | Gdiplus.dll |