<< Click to Display Table of Contents >>

OZUserActionCommand > AddCheckMark

OZUserActionCommand의 type 중 AddCheckMark는 보고서에 체크 마크를 추가할 때 발생하며, 리턴되는 attr은 다음과 같습니다.

attr

설명

height

체크 마크의 높이(float)

reportname

보고서 이름(string)

width

체크 마크의 너비(float)

xpos

체크 마크의 X 좌표(float)

ypos

체크 마크의 Y 좌표(float)

Example

...

function OZUserActionCommand_OZViewer(type, attr) {

   var MyObj = eval('(' + attr + ')');

   if(type == "AddCheckMark") {

       alert(MyObj.height);

       ...

   }

}

...