스플리터가 비활성화 되었을 때의 이미지를 설정하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| strImageURL | STRING | 이미지 경로 | 
| Type | Description | 
|---|---|
| void | 없음 | 
** 스플리터의 image_disable 속성에서 설정한 것과 동일한 기능을 한다.
function btnImage_on_mouseup()
{
	// 스플리터 비활성화 이미지 설정
	splitter.setimagedisable("/xframe_logo.gif");
	// 스플리터를 비활성화시킨다.
	splitter.setenable(false);
}