멀티라인 그리드 특정 아이템의 최대 글자수를 가져오는 API이다.
Parameters | Type | Description |
---|---|---|
nRow | long | 로우 인덱스 |
nSubRow | short | 서브 로우 인덱스 |
nColumn | short | 컬럼 인덱스 |
Type | Description |
---|---|
short | 아이템의 최대 글자 수 |
function btn_getitemmaxlength_on_mouseup()
{
var nMaxLength = mgrdTest.getitemmaxlength(0, 0, 0);
screen.alert("0번째 아이템의 최대글자수 : " + nMaxLength);
}