그리드 » Api

getitemmousecursor

Description

그리드 특정 아이템의 설정된 마우스커서 모양을 읽어들이는 API이다.
0보다 작은 값이 반환 되는 경우는 해당 아이템에 설정된 마우스 커서가
존재하지 않는다는 의미이다.

Parameters

Parameters Type Description
nRow long 로우 인덱스
nColumn short 컬럼 인덱스

Return Value

Type Description
short 마우스 커서

Remark

** 반환되는 nCursor 상수값

 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 btn_on_mouseup() { var nMouseCursor = grd.getitemmousecursor(0, 0); factory.consoleprint("mousecursor : " + nMouseCursor); }

See Also

setitemmousecursor

Viewer Ver.

9.1.1.1

Update Date

20140519