CButton::GetBitmap
Llame a esta función miembro para obtener el identificador de un mapa de bits, establecido previamente con SetBitmap, que está asociado a un botón.
HBITMAP GetBitmap( ) const;
Valor devuelto
un identificador a un mapa de bits.NULL si no se especifica ningún mapa de bits previamente.
Ejemplo
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)));
Requisitos
encabezado: afxwin.h