CButton::GetCursor
Эта функция-член вызывается с целью получить дескриптор курсора ранее установленный с SetCursor, который связан с кнопкой.
HCURSOR GetCursor( );
Возвращаемое значение
Дескриптор образу курсора.NULL если курсор ранее не определен.
Пример
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));
Требования
Header: afxwin.h