Interface ISpinBox
A Java spin object.
public interface ISpinBox : IUiObjectBase, IClickable, IDoubleClickable, ILocationInfoProvider, ISupportsNativeObject, IEnabledProvider, IVisibleProvider, ITestObject, ITestObjectDescriber
- Inherited Members
- Extension Methods
Properties
Maximum
The maximum value of the spin box.
string Maximum { get; }
Property Value
Minimum
The minimum value of the spin box.
string Minimum { get; }
Property Value
Value
The spin box's value.
string Value { get; }
Property Value
Methods
Down()
Sets this spin box to the next lower value.
void Down()
SetValue(string)
Sets the spin box value.
void SetValue(string value)
Parameters
valuestringThe new value. Note: For SWT spinner objects, the parameter value must be an Integer (provided in String format, such as: "6", "7000", "34").
Up()
Sets this spin box to the next higher value.
void Up()