그리드 특정 컬럼의 hint_text 속성을 반환하는 API이다.
Parameters | Type | Description |
---|---|---|
nSubRow | short | 서브행 인덱스 |
nColumn | short | 컬럼 인덱스 |
Type | Description |
---|---|
BOOL | 컬럼 hint_text 속성값 |
function btn_on_mouseup()
{
screen.alert("0번재 서브행 1번째 컬럼 hint_text 속성 : " + grd.getcolumnhinttext(0, 1));
}