<< 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);

       ...

   }

}

...