라디오버튼 » Api

setmousecursor

Description

해당 라디오버튼에 마우스 오버되었을 때 마우스 커서 종류를 변경하는 API이다. 파라미터 bApplyGroup을 true로 줄 경우 동일한 그룹의 라디오버튼 마우스 커서가 모두 변경된다.

Parameters

Parameters Type Description
nMouseCursor short 마우스 오버되었을 때 마우스 커서 종류
bApplyGroup BOOL 동일한 그룹에 모두 적용할지 여부

Return Value

Type Description
void

Remark

**nMouseCursor (마우스 커서 종류) 상수

XFD_CURSOR_ARROW = 0
XFD_CURSOR_IBEAM = 1
XFD_CURSOR_WAIT = 2
XFD_CURSOR_CROSS = 3
XFD_CURSOR_UPARROW = 4
XFD_CURSOR_SIZENWSE = 5
XFD_CURSOR_SIZENESW = 6
XFD_CURSOR_SIZEWE = 7
XFD_CURSOR_SIZENS = 8
XFD_CURSOR_SIZEALL = 9
XFD_CURSOR_NO = 10
XFD_CURSOR_HAND = 11
XFD_CURSOR_HELP = 12

Example

function screen_on_load() { radio.setmousecursor(XFD_CURSOR_HAND, true); }

Viewer Ver.

9.1.1.1

Update Date

20110304