배경 투명여부를 설정하는 API이다.
Parameters | Type | Description |
---|---|---|
bTransparent | BOOL | 배경 투명 여부 |
Type | Description |
---|---|
void | 없음 |
function btn_settransparent_on_mouseup()
{
// 배경이 투명하지 않을 경우 투명 처리
if(shpObj.gettransparent() == false) {
shpObj.settransparent(true);
}
}