Table of Contents

Interface ISlider

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

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

string

IsScrollBar

Indicates whether slider is a scrollBar.

bool IsScrollBar { get; }

Property Value

bool

MaxPosition

The maximum position of the slider.

int MaxPosition { get; }

Property Value

int

MinPosition

The minimum position of the slider.

int MinPosition { get; }

Property Value

int

Orientation

A value of the Orientation enum.

SliderOrientation Orientation { get; }

Property Value

SliderOrientation

Position

The position of the slider.

int Position { get; }

Property Value

int

Methods

NextLine(uint)

Moves the slider downward, or to the right, the specified number of lines.

void NextLine(uint numberOfLines = 1)

Parameters

numberOfLines uint

The 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

numberOfLines uint

The number of lines to move the slider.

SetPosition(int)

Sets the position of the slider.

void SetPosition(int position)

Parameters

position int

The position of the slider.