Cicode Programming Reference > Cicode Function Categories > Menu Functions Introduction > MenuNodeSetProperty

MenuNodeSetProperty

Set the item value of the specified menu node.

Be reminded that changes made to the menu tree will not be persisted back to the menu configuration database.

Syntax

MenuNodeSetProperty(hNode, iField, sValue)

hNode:

Handle to the current node in the menu tree.

iField:

Field for which you want to set the value:

0 - Name of Menu Item.

1 - Icon symbol to be associated with the menu item

2 - Privilege level required to run the command, otherwise the menu item is disabled.

3 - Area level required to run the command, otherwise the menu item is disabled.

4 - Disabled Style. Allows different display style for a disabled menu item.

5 - Checked setting. Whether the menu item will display a checkbox next to the label.

6 - Width. Specifies the menu item width in pixels.

7 - Comment

sValue:

The item value to set for the Menu node.

Return Value

Zero (0) if successful. -1 if hNode or iField is invalid

Related Functions

MenuGetChild, MenuGetFirstChild, MenuGetGenericNode, MenuGetNextChild, MenuGetPageNode, MenuGetParent, MenuGetPrevChild, MenuGetWindowNode, MenuNodeAddChild, MenuNodeGetProperty, MenuNodeHasCommand, MenuNodeIsDisabled, MenuNodeIsHidden, MenuNodeRemove, MenuNodeRunCommand, MenuNodeSetDisabledWhen, MenuNodeSetHiddenWhen, MenuReload

See Also

Menu Functions Introduction

Menu Functions