GraphicsPath::AddLine(constPointF&,constPointF&) 메서드(gdipluspath.h)
GraphicsPath::AddLine 메서드는 이 경로의 현재 그림에 선을 추가합니다.
구문
Status AddLine(
const PointF & pt1,
const PointF & pt2
);
매개 변수
pt1
줄을 시작할 지점에 대한 참조입니다.
pt2
줄을 종료할 지점에 대한 참조입니다.
반환 값
형식:상태
메서드가 성공하면 Status 열거형의 요소인 Ok를 반환합니다.
메서드가 실패하면 Status 열거형의 다른 요소 중 하나를 반환합니다.
설명
예제
다음 예제에서는 GraphicsPath 개체 경로를 만들고 경로에 선을 추가한 다음 경로를 그립니다.
VOID Example_AddLine(HDC hdc)
{
Graphics graphics(hdc);
PointF point1(20.0f, 20.0f);
PointF point2(100.0f, 100.0f);
GraphicsPath path;
path.AddLine(point1, point2);
// Draw the path.
Pen pen(Color(255, 255, 0, 0));
graphics.DrawPath(&pen, &path);
}
요구 사항
요구 사항 | 값 |
---|---|
헤더 | gdipluspath.h |