Interface IMenuItemBase
Base interface for all MenuItem interfaces in SDK.
public interface IMenuItemBase
Properties
Exists
Indicates whether this menu item item exists.
bool Exists { get; }
Property Value
HasSubMenu
Indicates whether this menu item item contains a sub-menu.
bool HasSubMenu { get; }
Property Value
Index
The 1-based index of this menu item.
int Index { get; }
Property Value
IsChecked
Indicates whether this menu item has a check mark displayed next to it.
bool IsChecked { get; }
Property Value
IsEnabled
Indicates whether this menu item item is currently enabled.
bool IsEnabled { get; }
Property Value
Label
The menu item label as a string. If duplicate items exist, returns the index.
string Label { get; }
Property Value
Path
The path of this menu item.
string Path { get; }
Property Value
SubMenuCount
The number of items contained in this menu item's sub-menu.
int SubMenuCount { get; }