Custom속성으로 사용하는 속성들의 값을 설정하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| strPropName | STRING | Custom 속성명 | 
| strPropValue | STRING | Custom 속성값 | 
| Type | Description | 
|---|---|
| void | 
function btn_on_mouseup()
{
	var strValue = screen.getcustomprop("print_bold");
	if(strValue == "1") {
		screen.setcustomprop("print_bold", "0");
	}
}