네비바 » Api
setitemrighticonshow
Description
네비바의 아이템 오른쪽아이콘 표시 여부를 지정하는 API이다.
Parameters
Parameters |
Type |
Description |
nItemIndex |
short |
아이템 인덱스 |
bShow |
BOOL |
아이콘 표시여부 |
Return Value
Type |
Description |
BOOL |
정상 처리 여부 |
Remark
*아이템 인덱스가 -1인 경우, 아이템 전체
**false 지정시, 너비값은 무시된다.
Example
function righiconall_on_mouseup(objInst)
{
// 전체
navi01.setitemrighticonshow(-1, true);
navi01.setitemrighticon(-1, "/btn_navi_right.png");
}
function righticonex_on_mouseup(objInst)
{
// 마지막 아이템
var lastindex = navi01.getitemcount()-1;
navi01.setitemrighticonshow(lastindex, true);
navi01.setitemrighticon(lastindex, "/btn_navi_user.png");
}
See Also
getitemrighticonshow
setitemrighticon
setitemrighticonwidth
getitemrighticon
getitemrighticonwidth
Viewer Ver.
9.1.1.1
Update Date
20200618