Interface IToolBar
A .NET WPF toolbar object.
Inherited Members
Namespace: HP.LFT.SDK.WPF
Assembly: HP.LFT.SDK.dll
Syntax
public interface IToolBar : IUiObjectBase, IUiObjectBase, IClickable, IDoubleClickable, ILocationInfoProvider, ISupportSendKeys, ISupportDragAndDrop, IEnabledProvider, IVisibleProvider, ISupportsNativeObject, ITestObject, ITestObjectDescriber
Properties
Items
Returns the toolbar items in this toolbar.
Declaration
ReadOnlyCollection<IToolBarItem> Items { get; }
Property Value
| Type | Description |
|---|---|
| ReadOnlyCollection<IToolBarItem> |
Name
The name of this object.
Declaration
string Name { get; }
Property Value
| Type | Description |
|---|---|
| string |
Methods
IsItemOverflow(int)
Indicates whether the item resides in the overflow area of this toolbar.
Declaration
bool IsItemOverflow(int itemIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| int | itemIndex | 1-based index of the toolbar item. |
Returns
| Type | Description |
|---|---|
| bool |
IsItemOverflow(string)
Indicates whether the item resides in the overflow area of this toolbar.
Declaration
bool IsItemOverflow(string itemPath)
Parameters
| Type | Name | Description |
|---|---|---|
| string | itemPath | Name of the toolbar item. |
Returns
| Type | Description |
|---|---|
| bool |
ShowOverflow()
Displays the overflow area of this toolbar.
Declaration
void ShowOverflow()