그리드 헤더에 설정된 툴팁 텍스트를 반환하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| nRow | short | 로우 인덱스 | 
| nCol | short | 컬럼 인덱스 | 
| Type | Description | 
|---|---|
| STRING | 툴팁 텍스트 | 
* 툴팁(tooltip) : 아이템에 마우스를 올렸을때 해당 아이템의 설명을 보여주는 풍선 도움말
function btngetheadertooltiptext_on_mouseup()
{
	screen.alert(grd.getheadertooltiptext(0,1));
}