멀티라인 그리드 특정 컬럼의 수직정렬 상태를 가져오는 API이다.
Parameters | Type | Description |
---|---|---|
nSubRow | short | 서브 로우 인덱스 |
nColumn | short | 컬럼 인덱스 |
Type | Description |
---|---|
short | 수직정렬 상수 (*Remark 참조) |
**nVertAlign (수직정렬 속성값) 상수 0 : 상단정렬 1 : 중앙정렬 2 : 하단정렬
function btn_getcolumnvertalign_on_mouseup()
{
var nVert = mgrdTest.getcolumnvertalign(0,0);
screen.alert("0번째컬럼에0번째서브로우의 vertalign값 :" + nVert);
}