共用方式為


CBrush::operator HBRUSH

使用本運算子的方式取得 CBrush 物件上附加的 Windows GDI 控制代碼。

operator HBRUSH( ) const;

傳回值

如果成功的話,控制代碼 CBrush 物件所表示的 Windows GDI 物件;否則 NULL

備註

這個運算子是轉型運算子,以支援存取 HBRUSH 物件的直接使用。

如需使用圖形物件的詳細資訊,請參閱 Windows SDK圖形物件

範例

RECT rc = { 50, 50, 200, 200 };

Rectangle(pDC->GetSafeHdc(), rc.left, rc.top, rc.right, rc.bottom);

// The Win32 call to FillRect requires an HBRUSH.
// The HBRUSH operator casts the CBrush object
// to the required type.
CBrush brush;
brush.CreateSysColorBrush(COLOR_BTNFACE);
FillRect(pDC->GetSafeHdc(), &rc, (HBRUSH)brush);

需求

Header: afxwin.h

請參閱

參考

CBrush 類別

階層架構圖