Interface ISpinBox
A Java spin object.
Inherited Members
Namespace: HP.LFT.SDK.Java
Assembly: HP.LFT.SDK.dll
Syntax
public interface ISpinBox : IUiObjectBase, IClickable, IDoubleClickable, ILocationInfoProvider, ISupportsNativeObject, IEnabledProvider, IVisibleProvider, ITestObject, ITestObjectDescriber
Properties
Maximum
The maximum value of the spin box.
Declaration
string Maximum { get; }
Property Value
| Type | Description |
|---|---|
| string |
Minimum
The minimum value of the spin box.
Declaration
string Minimum { get; }
Property Value
| Type | Description |
|---|---|
| string |
Value
The spin box's value.
Declaration
string Value { get; }
Property Value
| Type | Description |
|---|---|
| string |
Methods
Down()
Sets this spin box to the next lower value.
Declaration
void Down()
SetValue(string)
Sets the spin box value.
Declaration
void SetValue(string value)
Parameters
| Type | Name | Description |
|---|---|---|
| string | value | The 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.
Declaration
void Up()