멀티라인 그리드 특정 컬럼의 최대 글자수를 반환하는 API이다.
Parameters | Type | Description |
---|---|---|
nSubRow | short | 서브 로우 인덱스 |
nColumn | short | 컬럼 인덱스 |
Type | Description |
---|---|
short | 최대 글자수 |
* max_length 값이 0이면 입력 가능 글자수를 제한하지 않은 상태이다.
function btn_getcolumnmaxlength_on_mouseup()
{
screen.alert(mgrdTest.getcolumnmaxlength(1,1));
}