<< Click to Display Table of Contents >>
OZUserActionCommand > Find
OZUserActionCommandのtype中Findはレポートを検索する時に発生し、返されるattrは次の通りです。
attr |
説明 |
checkmatchcase |
大文字と小文字を区別する(string) |
checkword |
単語単位で探す(string) |
direction |
検索する方向(string) |
reportname |
レポート名(string) |
str |
検索する文字列(string) |
Example
...
function OZUserActionCommand_OZViewer(type, attr) {
var MyObj = eval('(' + attr + ')');
if(type == "Find") {
alert(MyObj.checkmatchcase);
...
}
}
...