6137c2317d
* Don't pollute Menu API. * Add examples in docs. * Moves the docs from menu-item.md to menu.md.
25 lines
923 B
Markdown
25 lines
923 B
Markdown
# menu-item
|
|
|
|
## Class: MenuItem
|
|
|
|
### new MenuItem(options)
|
|
|
|
* `options` Object
|
|
* `click` Function - Callback when the menu item is clicked
|
|
* `selector` String - Call the selector of first responder when clicked (OS
|
|
X only)
|
|
* `type` String - Can be `normal`, `separator`, `submenu`, `checkbox` or
|
|
`radio`
|
|
* `label` String
|
|
* `sublabel` String
|
|
* `accelerator` [Accelerator](accelerator.md)
|
|
* `icon` [NativeImage](native-image.md)
|
|
* `enabled` Boolean
|
|
* `visible` Boolean
|
|
* `checked` Boolean
|
|
* `submenu` Menu - Should be specified for `submenu` type menu item, when
|
|
it's specified the `type: 'submenu'` can be omitted for the menu item
|
|
* `id` String - Unique within a single menu. If defined then it can be used
|
|
as a reference to this item by the position attribute.
|
|
* `position` String - This field allows fine-grained definition of the
|
|
specific location within a given menu.
|