Pen::GetLastStatus 方法 (gdipluspen.h)
Pen::GetLastStatus 方法返回一个值,该值指示此 Pen 对象最近方法失败的性质。
语法
Status GetLastStatus();
返回值
类型: 状态
Pen::GetLastStatus 方法返回 Status 枚举的元素。
如果自上次调用 Pen::GetLastStatus 以来,对此 Pen 对象调用的方法均未失败,则 Pen::GetLastStatus 返回 Ok。
如果自上次调用 Pen::GetLastStatus 以来,对此 Pen 对象调用的至少一种方法失败,则 Pen::GetLastStatus 将返回一个值,该值指示最近失败的性质。
注解
可以在构造 Pen 对象后立即调用 Pen::GetLastStatus,以确定构造函数是否成功。
首次调用 Pen 对象的 Pen::GetLastStatus 方法时,如果构造函数成功并且到目前为止对 Pen 对象调用的所有方法都成功,则返回 Ok。 否则,它将返回一个值,该值指示最近失败的性质。
示例
以下示例创建 一个 Pen 对象,设置短划线样式,并绘制虚线。 然后,代码会检查设置笔的短划线样式的方法的状态。
VOID Example_GetLastStatus(HDC hdc)
{
Graphics graphics(hdc);
// Create a pen.
Pen pen(Color(255, 255, 0, 0), 5);
// Set the dash style, and draw a dashed line.
pen.SetDashStyle(DashStyleDash);
graphics.DrawLine(&pen, 0, 0, 200, 100);
// Check the status of the method that sets the dash style for the pen.
Status status = pen.GetLastStatus();
if(status == Ok)
{
// The call to SetDashStyle was successful.
}
else
{
// There was a problem with the call to SetDashStyle.
}
}
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows XP、Windows 2000 Professional [仅限桌面应用] |
最低受支持的服务器 | Windows 2000 Server [仅限桌面应用] |
目标平台 | Windows |
标头 | gdipluspen.h (包括 Gdiplus.h) |
Library | Gdiplus.lib |
DLL | Gdiplus.dll |