<< Click to Display Table of Contents >>
OZUserActionCommand > ReusableSign
OZUserActionCommandのtypeのうち、ReusableSignは、インポート機能で署名を入力した後、修正せずにすぐに署名の入力を終了するときに発生します。
attr |
説明 |
compname |
コンポーネント名(string) |
reportindex |
レポートのインデックス(int)。Zero-Based Index |
reportname |
レポート名(string) |
Example
...
function OZUserActionCommand_OZViewer(type, attr) {
var MyObj = eval('(' + attr + ')');
if(type == "ReusableSign") {
alert(MyObj.compname);
...
}
}
...