max_sendrows 속성값을 설정한다.
| Parameters | Type | Description | 
|---|---|---|
| nMaxSendRows | long | max_sendrows 속성값 | 
| Type | Description | 
|---|---|
| BOOL | 정상 처리 여부 | 
function btntest_on_mouseup()
{
    screen.alert("max_sendrows = " + grd.getmaxsendrows());
    grd.setmaxsendrows(100);
    screen.alert("max_sendrows = " + grd.getmaxsendrows());
}