그리드 특정 컬럼의 최대 입력 길이를 설정하는 API이다.
Parameters | Type | Description |
---|---|---|
nSubRow | short | 서브행 인덱스 |
nColumn | short | 컬럼 인덱스 |
nMaxLength | short | 최대 길이값 |
Type | Description |
---|---|
void | 없음 |
function btn_on_mouseup()
{
grd.setcolumnmaxlength(0, 1, 5);
// 최대 5자리까지 입력가능
}