화면 » Api

getclientheight

Description

화면의 실제 Drawing 영역 높이를 반환하는 API이다.

Return Value

Type Description
long 화면의 실제 Drawing영역 높이

Remark

* Drawing영역은 해당 화면의 윈도우 영역내에 실제로 Drawing이 되기 위한 영역

Example

function btn_getclinetwidth_on_mouseup() { var instScr = tabTest.getchildscreeninstance(0); if(factory.isobject(instScr)) { factory.consoleprint("화면의 윈도우 높이 : " + instScr.getwindowheight()); factory.consoleprint("화면의 Drawing영역 높이 : " + instScr.getclientheight()); factory.consoleprint("실제 화면 높이 : " + instScr.getscreenheight()); } }

See Also

getclientwidth

Viewer Ver.

9.1.1.1

Update Date

20131230