Every node in any menu is a tree of MenuItems. Every MenuItem have own properties.
| Properties: | |
| Caption | This is a text of menu item. |
| Checked | If this true, menu item will have a checkmark at left. |
| Enabled | This is True by default. Set it to False to generate disabled control. This will add GUICtrlSetState(-1, $GUI_DISABLE) line. |
| GroupIndex | Items that have RadioItem property and with the same GroupIndex will be grouped. |
| HotKey | This property allow to set hotkey for this item. |
| Name | Unique name of control, this defines the name of variable where control ID will be kept. It also can be empty, when no variable will be created. |
| OnClick | Standard control event. |
| Visible | This is True by default. Set it to False to generate hidden control. This will add GUICtrlSetState(-1, $GUI_HIDE) line. |