Class MenuItem
A menu item has a title, an associated help text, and an action to execute on activation.
Inheritance
System.Object
MenuItem
Namespace: Terminal
Assembly: Terminal.dll
Syntax
public class MenuItem
Constructors
MenuItem(String, String, Action)
Declaration
public MenuItem (string title, string help, Action action);
Parameters
Type | Name | Description |
---|---|---|
System.String | title | To be added. |
System.String | help | To be added. |
System.Action | action | To be added. |
Fields
HotKey
Declaration
public char HotKey;
Field Value
Type | Description |
---|---|
System.Char | To be added. |
ShortCut
Declaration
public Terminal.Key ShortCut;
Field Value
Type | Description |
---|---|
Key | To be added. |
Properties
Action
Declaration
public Action Action { get; set; }
Property Value
Type | Description |
---|---|
System.Action | To be added. |
Help
Declaration
public string Help { get; set; }
Property Value
Type | Description |
---|---|
System.String | To be added. |
Title
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String | To be added. |