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