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