Interface ISpinBox
A .NET Windows Forms spin object.
Inherited Members
Namespace: HP.LFT.SDK.WinForms
Assembly: HP.LFT.SDK.dll
Syntax
public interface ISpinBox : IUiObjectBase, IUiObjectBase, IClickable, IDoubleClickable, ILocationInfoProvider, ISupportSendKeys, ISupportDragAndDrop, IEnabledProvider, IVisibleProvider, ISupportsNativeObject, ITestObject, ITestObjectDescriber
Properties
ErrorText
Returns the tooltip text of the error icon associated with this object.
Declaration
string ErrorText { get; }
Property Value
| Type | Description |
|---|---|
| string |
Value
The spin object value.
Declaration
int Value { get; }
Property Value
| Type | Description |
|---|---|
| int |
Methods
Down()
Sets this spin object to the next lower value.
Declaration
void Down()
SetValue(int)
Sets the spin object value.
Declaration
void SetValue(int value)
Parameters
| Type | Name | Description |
|---|---|---|
| int | value | The new value. |
Up()
Sets this spin object to the next higher value.
Declaration
void Up()