슬라이더의 핸들 보더 색상을 반환하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| nHandleType | short | 핸들타입 (1: 민핸들, 2: 맥스핸들) | 
| Type | Description | 
|---|---|
| COLOR | 핸들의 보더 색상값 | 
* nHandleType파라미터값을 넘겨주지 않으면 민핸들의 보더색을 가져온다.
function bb_on_mouseup()
{
	var res = slider.sethandlebordercolor(1);
    screen.alert("res = " + res);
}