CButton::GetBitmap
呼叫此成員函式以取得點陣圖的控制代碼,先前設定的 SetBitmap,與按鈕。
HBITMAP GetBitmap( ) const;
傳回值
表示點陣圖的控制代碼。NULL 點陣圖,或是先前未指定。
範例
CButton myBitmapButton;
// Create a bitmap button.
myBitmapButton.Create(_T("My button"), WS_CHILD|WS_VISIBLE|BS_BITMAP,
CRect(10,10,60,50), pParentWnd, 1);
// If no bitmap is defined for the button, define the bitmap to the
// system close bitmap.
if (myBitmapButton.GetBitmap() == NULL)
myBitmapButton.SetBitmap(::LoadBitmap(NULL, MAKEINTRESOURCE(OBM_CLOSE)));
需求
Header: afxwin.h