멀티라인 그리드 헤더의 수직 정렬값을 가져오는 API이다.
Parameters | Type | Description |
---|---|---|
nHeaderRow | short | 헤더 로우 인덱스 |
nHeaderCol | short | 헤더 컬럼 인덱스 |
Type | Description |
---|---|
short | 헤더 수직정렬 |
반환하는값 **nVertAlign (수직정렬 속성값) 0 : top 1 : center 2 : bottom
function btn_getheadervertalign_on_mouseup()
{
var nVert = mgrdTest.getheadervertalign(0,0);
screen.alert("헤더의 vertalign값 : " + nVert);
}