<< 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);

       ...

   }

}

...