네비바 » Api
setitemlefticonshow
Description
네비바의 아이템 왼쪽아이콘 표시 여부를 지정하는 API이다.
Parameters
Parameters |
Type |
Description |
nItemIndex |
short |
아이템 인덱스 |
bShow |
BOOL |
아이콘 표시여부 |
Return Value
Type |
Description |
BOOL |
정상 처리 여부 |
Remark
*아이템 인덱스가 -1인 경우, 아이템 전체
**false 지정시, 너비값은 무시된다.
Example
function lefticonall_on_mouseup(objInst)
{
// 전체
navi01.setitemlefticonshow(-1, true);
navi01.setitemlefticon(-1, "/btn_navi_left.png");
}
function lefticon_on_mouseup(objInst)
{
// 첫번째 아이템
navi01.setitemlefticonshow(0, true);
navi01.setitemlefticon(0, "/btn_navi_home.png");
}
See Also
getitemlefticonshow
setitemlefticon
setitemlefticonwidth
getitemlefticon
getitemlefticonwidth
Viewer Ver.
9.1.1.1
Update Date
20200618