Interface ISlider
A Java slider.
public interface ISlider : IUiObjectBase, IClickable, IDoubleClickable, ILocationInfoProvider, ISupportsNativeObject, IEnabledProvider, IVisibleProvider, ITestObject, ITestObjectDescriber
- Inherited Members
- Extension Methods
Properties
ContainerAttachedText
The text of the slider object's container.
string ContainerAttachedText { get; }
Property Value
IsScrollBar
Indicates whether slider is a scrollBar.
bool IsScrollBar { get; }
Property Value
MaxPosition
The maximum position of the slider.
int MaxPosition { get; }
Property Value
MinPosition
The minimum position of the slider.
int MinPosition { get; }
Property Value
Orientation
A value of the Orientation enum.
SliderOrientation Orientation { get; }
Property Value
Position
The position of the slider.
int Position { get; }
Property Value
Methods
NextLine(uint)
Moves the slider downward, or to the right, the specified number of lines.
void NextLine(uint numberOfLines = 1)
Parameters
numberOfLinesuintThe number of lines to move the slider.
PreviousLine(uint)
Moves the slider upward, or to the left, the specified number of lines.
void PreviousLine(uint numberOfLines = 1)
Parameters
numberOfLinesuintThe number of lines to move the slider.
SetPosition(int)
Sets the position of the slider.
void SetPosition(int position)
Parameters
positionintThe position of the slider.