해당 라디오버튼 그룹내의 특정 라디오버튼 Instance를 반환한다.
| Parameters | Type | Description | 
|---|---|---|
| nIndex | short | 그룹내 Index | 
| Type | Description | 
|---|---|
| INSTANCE | 그룹내의 특정 라디오 버튼 Instance | 
function btn_on_mouseup()
{
	var nRadios = radioInKind.getgroupcount();
	for(var nIndex = 0;nIndex < nRadios;nIndex++) {
		var instRadio = radioInKind.getgroupat(nIndex);
		if(instRadio == null) {
			continue;
		}
		if(instRadio.getcheck() == true) {
			screen.alert("check at : " + nIndex);
			break;
		}
	}
}