Table of Contents

Interface IComboBox

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

A .NET WPF combo box.

public interface IComboBox : IUiObjectBase, IUiObjectBase, IClickable, IDoubleClickable, ILocationInfoProvider, ISupportSendKeys, ISupportDragAndDrop, IEnabledProvider, IVisibleProvider, ISupportsNativeObject, ITestObject, ITestObjectDescriber
Inherited Members
Extension Methods

Properties

HelpText

The help text associated with this object.

string HelpText { get; }

Property Value

string

Items

Returns the names of the items in the combo box.

ReadOnlyCollection<string> Items { get; }

Property Value

ReadOnlyCollection<string>

Name

The name of this object.

string Name { get; }

Property Value

string

ParentText

The text associated with the parent object of this object.

string ParentText { get; }

Property Value

string

SelectedItem

Returns the selected item in the combo box.

string SelectedItem { get; }

Property Value

string

Methods

Select(int)

Selects an item from the combo box.

void Select(int index)

Parameters

index int

0-based index of the item.

Select(string)

Selects an item from the combo box.

void Select(string item)

Parameters

item string

The item value.