Interface IComboBox
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
Items
Returns the names of the items in the combo box.
ReadOnlyCollection<string> Items { get; }
Property Value
Name
The name of this object.
string Name { get; }
Property Value
ParentText
The text associated with the parent object of this object.
string ParentText { get; }
Property Value
SelectedItem
Returns the selected item in the combo box.
string SelectedItem { get; }
Property Value
Methods
Select(int)
Selects an item from the combo box.
void Select(int index)
Parameters
indexint0-based index of the item.
Select(string)
Selects an item from the combo box.
void Select(string item)
Parameters
itemstringThe item value.