컴포넌트의 boxshadow_type 속성값을 반환하는 API이다.
Type | Description |
---|---|
short | boxshadow_type 속성값 |
function btn_on_mouseup(objInst)
{
var boxshadow_type;
boxshadow_type = objComponent.getboxshadowtype();
if (boxshadow_type == 0) {
objComponent.setboxshadowtype(2);
}
else {
objComponent.setboxshadowtype(0);
}
}