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