컴포넌트의 boxshadow_type 속성값을 설정하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| nBoxshadowType | short | boxshadow_type 속성값(*Remark 참조) | 
| Type | Description | 
|---|---|
| BOOL | 정상 처리 여부 | 
**nBoxshadowType 옵션값 0:none 1:extra-small 2:small 3:medium 4:large 5:extra-large
function btn_on_mouseup(objInst)
{
	var boxshadow_type;
	
	boxshadow_type = objComponent.getboxshadowtype();
	if (boxshadow_type == 0) {
		objComponent.setboxshadowtype(2);
	}
	else {
		objComponent.setboxshadowtype(0);
	}
}