Interface IScrollBar
- Namespace
- HP.LFT.SDK.PowerBuilder
- Assembly
- HP.LFT.SDK.dll
A PowerBuilder scroll bar.
public interface IScrollBar : IUiObjectBase, IUiObjectBase, IClickable, IDoubleClickable, ILocationInfoProvider, ISupportSendKeys, ISupportDragAndDrop, IEnabledProvider, IVisibleProvider, ITestObject, ITestObjectDescriber
- Inherited Members
- Extension Methods
Properties
MaxPosition
The maximum scrolling position.
int MaxPosition { get; }
Property Value
MinPosition
The minimum scrolling position.
int MinPosition { get; }
Property Value
Position
The scroll bar position.
int Position { get; }
Property Value
Methods
NextLine(int)
Moves the scroll bar downward, or to the right, the specified number of lines.
void NextLine(int numberOfLines = 1)
Parameters
numberOfLinesintThe number of lines to move the scroll bar (Default value: 1).
NextPage(int)
Moves the scroll bar downward, or to the right, the specified number of pages.
void NextPage(int numberOfPages = 1)
Parameters
numberOfPagesintThe number of pages to move the scroll bar (Default value: 1).
PreviousLine(int)
Moves the scroll bar upward, or to the left, the specified number of lines.
void PreviousLine(int numberOfLines = 1)
Parameters
numberOfLinesintThe number of lines to move the scroll bar (Default value: 1).
PreviousPage(int)
Moves the scroll bar upward, or to the left, the specified number of pages.
void PreviousPage(int numberOfPages = 1)
Parameters
numberOfPagesintThe number of pages to move the scroll bar (Default value: 1).
SetPosition(int)
Sets the scroll bar position.
void SetPosition(int position)
Parameters
positionintThe scroll bar position to be set.