Graphics::D rawLines(constPen*,constPointF*,INT) 메서드(gdiplusgraphics.h)
Graphics::D rawLines 메서드는 연결된 선 시퀀스를 그립니다.
구문
Status DrawLines(
const Pen *pen,
const PointF *points,
INT count
);
매개 변수
pen
선을 그리는 데 사용되는 펜에 대한 포인터입니다.
points
선의 시작점과 끝점을 지정하는 PointF 개체의 배열에 대한 포인터입니다.
count
점 배열의 요소 수를 지정하는 정수입니다.
반환 값
메서드가 성공하면 Status 열거형의 요소인 확인을 반환합니다.
메서드가 실패하면 Status 열거형의 다른 요소 중 하나를 반환합니다.
설명
예제
다음 예제에서는 연결된 선 시퀀스를 그립니다.
VOID Example_DrawLines2(HDC hdc)
{
Graphics graphics(hdc);
// Create a Pen object.
Pen blackPen(Color(255, 0, 0, 0), 3);
// Create an array of PointF objects that define the lines to draw.
PointF point1(10.0f, 10.0f);
PointF point2(10.0f, 100.0f);
PointF point3(200.0f, 50.0f);
PointF point4(250.0f, 300.0f);
PointF points[4] = {point1, point2, point3, point4};
PointF* pPoints = points;
// Draw the lines.
graphics.DrawLines(&blackPen, pPoints, 4);
}
요구 사항
머리글 | gdiplusgraphics.h |