Compartir a través de


CStatic::GetBitmap

Gets the handle of the bitmap, previously set with SetBitmap, that is associated with CStatic.

HBITMAP GetBitmap( ) const;

Return Value

A handle to the current bitmap, or NULL if no bitmap has been set.

Example

CStatic myStatic;

// Create a child bitmap static control.
myStatic.Create(_T("my static"), 
   WS_CHILD|WS_VISIBLE|SS_BITMAP|SS_CENTERIMAGE, CRect(10,10,150,50), 
   pParentWnd);

// If no bitmap is defined for the static control, define the bitmap 
// to the system close bitmap.
if (myStatic.GetBitmap() == NULL)
   myStatic.SetBitmap(::LoadBitmap(NULL, MAKEINTRESOURCE(OBM_CLOSE)));

Requirements

Header: afxwin.h

See Also

Concepts

CStatic Class

CStatic Members

Hierarchy Chart

CStatic::SetBitmap

STM_GETIMAGE

Bitmaps