<< Click to Display Table of Contents >>
OZUserActionCommand > CloseByThumbnail
OZUserActionCommandのtypeのうちCloseByThumbnailは、ページのサムネイルのポップアップメニューで[閉じる]をクリックした場合に発生し、リターンするattrは以下の通りです。
attr |
説明 |
close |
閉じるか否か(string) リターンする値:true、false |
index |
レポートのインデックス(int)。Zero-Based Index |
reportname |
レポート名(string) |
Reference
[閉じる]メニューをクリックしてレポートを閉じた場合、OZUserActionCommandのCloseが呼び出されてからCloseByThumbnailが呼び出されます。
Example
...
function OZUserActionCommand_OZViewer(type, attr) {
var MyObj = eval('(' + attr + ')');
if(type == "CloseByThumbnail") {
alert(MyObj.close);
...
}
}
...
See Also