<< Click to Display Table of Contents >>
OZUserActionCommand > BankbookPrint
OZUserActionCommand의 type 중 BankbookPrint는 통장 프린터로 인쇄할 때 발생하며, 리턴되는 attr은 다음과 같습니다.
attr |
설명 |
pagecount |
인쇄한 페이지 수(int) |
reportname |
보고서 이름(string) |
Example
...
function OZUserActionCommand_OZViewer(type, attr) {
var MyObj = eval('(' + attr + ')');
if(type == "BankbookPrint") {
alert(MyObj.pagecount);
...
}
}
...