슬라이더의 핸들에 마우스를 올렸을 때의 이미지를 설정하는 API이다.
Parameters | Type | Description |
---|---|---|
strImageURL | STRING | 이미지 경로 |
nHandleType | short | 핸들타입 (1: 민핸들, 2:맥스핸들) |
Type | Description |
---|---|
void | 없음 |
* 슬라이더의 minhandle_imagehover혹은 maxhandle_imagehover 속성에서 설정한 것과 동일한 기능을 한다. * 새로운 이미지 등록은 툴의 [도구]>[이미지등록] 메뉴에서 할 수 있으며, 등록 시 지정한 경로를 파라미터로 주면 된다.
function menubtn_on_mouseup()
{
// 슬라이더 핸들 비활성화 이미지 설정
slider.sethandleimageover("/xframe_logo.gif", 1);
}