Table of Contents

Interface ISpinBox

Namespace
HP.LFT.SDK.Java
Assembly
HP.LFT.SDK.dll

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

string

Minimum

The minimum value of the spin box.

string Minimum { get; }

Property Value

string

Value

The spin box's value.

string Value { get; }

Property Value

string

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

value string

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.

void Up()