멀티라인 그리드 체크박스열에 체크된 로우의 개수를 반환하는 API이다.
| Type | Description | 
|---|---|
| long | 체크된 로우의 개수 | 
* 다중 선택이 가능하도록 한 경우에 많이 사용하며 use_checkrow를 사용하여 추가된 체크박스인 경우에만 해당된다.
function btn_getcheckedrowcount_on_mouseup()
{
	var nRowCnt = mgrdTest.getcheckedrowcount();
	screen.alert("체크된로우의 개수 :"  + nRowCnt);
}