테이블뷰의 특정 컬럼을 삭제하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| nColumn | short | 삭제할 컬럼의 인덱스 | 
| Type | Description | 
|---|---|
| BOOL | 컬럼삭제 성공여부(true, false) | 
function btn_deletecolumn_on_mouseup()
{
	// 0번째 인덱스컬럼삭제
	var bResult = tableview.deletecolumn(0);
	if(bResult == true)
	{
		screen.alert("컬럼이 삭제되었습니다.");
	}
}