그리드 칼럼의 button_text 속성값을 리턴한다.
| Parameters | Type | Description | 
|---|---|---|
| nColumn | short | 컬럼 인덱스 | 
| Type | Description | 
|---|---|
| BOOL | button_text 속성값 | 
오류 발생시 공백 문자열 값이 리턴된다.
function btn_on_mouseup(objInst)
{
	var strButtonText, bRet;
	
	strButtonText = grd.getcolumnbuttontext(0);
	factory.consoleprint("strButtonText = " + strButtonText);
	bRet = grd.setcolumnbuttontext(0, strButtonText + "_NEW");
}