IMenuItem Interface
An Oracle menu item.
C# Syntax
public interface IMenuItem
Public Properties
Name | Description | |
---|---|---|
Path | The path of the menu item. Menu items are separated by -> characters. C# Syntax string Path {get;} | |
IsChecked | Indicates whether this menu item is currently checked. C# Syntax bool IsChecked {get;} | |
IsEnabled | Indicates whether this menu item is currently enabled. C# Syntax bool IsEnabled {get;} | |
IsDisabled | Indicates whether this menu item is currently disabled. C# Syntax bool IsDisabled {get;} | |
IsVisible | Indicates whether this menu item is currently visible. C# Syntax bool IsVisible {get;} | |
IsShowing | Indicates whether this menu item is currently showing. C# Syntax bool IsShowing {get;} | |
MenuSubItems | A list of all submenus for the specified menu item. C# Syntax ReadOnlyCollection<IMenuItem> MenuSubItems {get;} |