IMenuItem Interface

An Oracle menu item.

C# Syntax

public interface IMenuItem 

Public Properties

 NameDescription
PropertyPath

The path of the menu item.

Menu items are separated by -> characters.

C# Syntax

string Path {get;}
PropertyIsChecked

Indicates whether this menu item is currently checked.

C# Syntax

bool IsChecked {get;}
PropertyIsEnabled

Indicates whether this menu item is currently enabled.

C# Syntax  

bool IsEnabled {get;}
PropertyIsDisabled

Indicates whether this menu item is currently disabled.

C# Syntax  

bool IsDisabled {get;}
PropertyIsVisible

Indicates whether this menu item is currently visible.

C# Syntax  

bool IsVisible {get;}
PropertyIsShowing

Indicates whether this menu item is currently showing.  

C# Syntax  

bool IsShowing {get;}
PropertyMenuSubItems

A list of all submenus for the specified menu item.

C# Syntax  

ReadOnlyCollection<IMenuItem> MenuSubItems {get;}
Top