CButton::GetCursor
Rufen Sie die Memberfunktion auf, um das Handle eines Cursors abzurufen, zuvor mit SetCursor festgelegt, der mit einer Schaltfläche zugeordnet ist.
HCURSOR GetCursor( );
Rückgabewert
Ein Handle für ein Cursor-Image.NULL, wenn kein Cursor zuvor angegeben wird.
Beispiel
CButton myIconButton;
// Create an icon button.
myIconButton.Create(_T("My button"), WS_CHILD|WS_VISIBLE|BS_ICON,
CRect(10,10,60,50), pParentWnd, 1);
// If no image is defined for the button, define the image to the
// system arrow and question mark cursor.
if (myIconButton.GetCursor() == NULL)
myIconButton.SetCursor(::LoadCursor(NULL, IDC_HELP));
Anforderungen
Header: afxwin.h