네비바의 아이템을 삭제하는 API이다.
Parameters | Type | Description |
---|---|---|
nItemIndex | short | Delete할 Item Index |
Type | Description |
---|---|
BOOL | 삭제 성공 여부(true, false) |
function delete_on_mouseup(objInst)
{
var lastindex = navi01.getitemcount()-1;
navi01.deleteitem(lastindex); // 마지막 아이템 제거
}