화면 » Api

setscrollbarstyle

Description

화면에 지정하고 싶은 수직과 수평의 스크롤의 종류를 설정하는 API이다.

Parameters

Parameters Type Description
nHorzBarStyle short 수평 스크롤바 style(*Remark 참조)
nVertBarStyle short 수직 스크롤바 style(*Remark 참조)

Return Value

Type Description
void 없음

Remark

**nStyle (스크롤 스타일) 상수

0:none(없음)
1:auto(자동)

Example

function btn_setscrollbarstyle_on_mouseup() { factory.loadpopupex("Test", "/test/test_Print", "Test", false, XFD_BORDER_NONE, 0, 0, 200, 300, false, false, false, screen); var scrPopup = factory.findpopup("Test"); if(factory.isobject(scrPopup)) { scrPopup.setscrollbarstyle(1, 1); } }

See Also

scroll

Viewer Ver.

9.1.1.1

Update Date

20191001