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