통계의 통계데이터 셀에 값을 읽어 들이는 API입니다.
| Parameters | Type | Description | 
|---|---|---|
| nStatRow | short | 통계행 로우 인덱스 (Zero-Base) | 
| nStatCol | short | 통계열 컬럼 인덱스 (Zero-Base) | 
| Type | Description | 
|---|---|
| STRING | 통계의 통계데이터 | 
nRow/nCol 파라미터가 없는 로우/컬럼 인덱스인 경우 '' 반환
function btnSetStatOfStatText_on_mouseup()
{
	// 통계열 0번째 통계행 1번째에 해당하는 통계의 통계데이터 읽기
	factory.consoleprint("Stat Of Stat : " + grid.getstatofstattext(0, 1));
}