Table of Contents

Interface IMenuItemBase

Namespace
HP.LFT.SDK
Assembly
HP.LFT.SDK.dll

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

bool

HasSubMenu

Indicates whether this menu item item contains a sub-menu.

bool HasSubMenu { get; }

Property Value

bool

Index

The 1-based index of this menu item.

int Index { get; }

Property Value

int

IsChecked

Indicates whether this menu item has a check mark displayed next to it.

bool IsChecked { get; }

Property Value

bool

IsEnabled

Indicates whether this menu item item is currently enabled.

bool IsEnabled { get; }

Property Value

bool

Label

The menu item label as a string. If duplicate items exist, returns the index.

string Label { get; }

Property Value

string

Path

The path of this menu item.

string Path { get; }

Property Value

string

SubMenuCount

The number of items contained in this menu item's sub-menu.

int SubMenuCount { get; }

Property Value

int