상태바에서 해당 인덱스 상태바 아이템의 invert(반전)효과 설정여부를 반환하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| nID | short | 상태바 아이템 인덱스 | 
| Type | Description | 
|---|---|
| BOOL | 반전 효과 설정 여부(true, false) | 
function btn_getstatusinvert_on_mouseup()
{
	var bStatus = status.getstatusinvert(0);
	if(bStatus == true)  {
		screen.alert("invert 효과 설정되어 있음");
	} else {
		screen.alert("invert 효과 설정되있지 않음");
	}
}