<< Click to Display Table of Contents >>
OZUserActionCommand > Zoom
OZUserActionCommand의 type 중 Zoom은 보고서를 확대, 축소, 복원할 때 발생하며, 리턴되는 attr은 다음과 같습니다.
attr |
설명 |
pagedisplay |
페이지 표시(string) |
reportname |
보고서 이름(string) |
viewmode |
보기 모드(string) |
zoom |
확대, 축소, 복원(string) |
zoomvalue |
보고서의 확대, 축소 비율(int) |
Example
...
function OZUserActionCommand_OZViewer(type, attr) {
var MyObj = eval('(' + attr + ')');
if(type == "Zoom") {
alert(MyObj.pagedisplay);
...
}
}
...