Pen::GetLastStatus 方法 (gdipluspen.h)
Pen::GetLastStatus 方法會傳回值,指出這個 Pen 物件最近方法失敗的本質。
Syntax
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) |
程式庫 | Gdiplus.lib |
Dll | Gdiplus.dll |