GraphicsPath::AddLine (constPointF&,constPointF&) 方法 (gdipluspath.h)
GraphicsPath::AddLine 方法向此路径的当前图形添加一行。
语法
Status AddLine(
const PointF & pt1,
const PointF & pt2
);
参数
pt1
对开始行的点的引用。
pt2
对行结束点的引用。
返回值
类型:状态
如果该方法成功,则返回 Ok,这是 Status 枚举的元素。
如果方法失败,它将返回 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);
}
要求
要求 | 值 |
---|---|
Header | gdipluspath.h |