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));
요구 사항
헤더: afxwin.h