<< Click to Display Table of Contents >>
OZUserActionCommand > AddMemo
OZUserActionCommandのtype中AddImageはレポートにイメージを追加する時に発生し、返されるattrは次の通りです。
attr |
説明 |
height |
イメージの高さ(float) |
reportname |
レポート名(string) |
width |
イメージの幅(float) |
xpos |
イメージのX座標W(float) |
ypos |
イメージのY座標W(float) |
Example
...
function OZUserActionCommand_OZViewer(type, attr) {
var MyObj = eval('(' + attr + ')');
if(type == "AddImage") {
alert(MyObj.height);
...
}
}
...