<< Click to Display Table of Contents >>
OZUserActionCommand > AddArrow
OZUserActionCommand의 type 중 AddArrow는 보고서에 화살표를 추가할 때 발생하며, 리턴되는 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 == "AddArrow") {
alert(MyObj.height);
...
}
}
...