Interface ISlider
A .NET WPF slider object.
Inherited Members
Namespace: HP.LFT.SDK.WPF
Assembly: HP.LFT.SDK.dll
Syntax
public interface ISlider : IUiObjectBase, IUiObjectBase, IClickable, IDoubleClickable, ILocationInfoProvider, ISupportSendKeys, ISupportDragAndDrop, IEnabledProvider, IVisibleProvider, ISupportsNativeObject, ITestObject, ITestObjectDescriber
Properties
Maximum
The maximum position of this slider.
Declaration
double Maximum { get; }
Property Value
| Type | Description |
|---|---|
| double |
Minimum
The minimum position of this slider.
Declaration
double Minimum { get; }
Property Value
| Type | Description |
|---|---|
| double |
Name
The name of this object.
Declaration
string Name { get; }
Property Value
| Type | Description |
|---|---|
| string |
Position
The current position of this slider.
Declaration
double Position { get; }
Property Value
| Type | Description |
|---|---|
| double |
Methods
SetPosition(double)
Sets the slider position.
Declaration
void SetPosition(double position)
Parameters
| Type | Name | Description |
|---|---|---|
| double | position | The position to set. |