컴포넌트의 description 속성값을 동적으로 변경할 수 있는 API입니다.
| Parameters | Type | Description | 
|---|---|---|
| strDescription | STRING | description 속성값 | 
| Type | Description | 
|---|---|
| void | 
function btnDescription_on_mouseup(objInst)
{
	if(grid.getdescription() == "") {
		grid.setdescription("test");
	}
}