이미지가 회전되었을때 호출됨
| Parameters | Type | Description |
|---|---|---|
| objInst | INSTANCE | 이미지 컴포넌트 인스턴스 |
| nDegree | short | / |
| Type | Description |
|---|---|
| void | 없음 |
/**
* 이미지가 회전되었을때 호출 이벤트
*
* @param {Object} objInst 이미지 컴포넌트 인스턴스
* @param {number} nDegree
*/
function imagebox_on_rotate(objInst, nDegree)
{
factory.consoleprint("on_rotate> Start");
factory.consoleprint("on_rotate> ImageBox Object Name = " + objInst.getname());
factory.consoleprint("on_rotate> nDegree = " + nDegree);
}