BrowserScroller Properties
DownArrow
The button to scroll down.
Syntax: public
Button
DownArrow { get; }
IsActive
Determines whether the scroller is active, meaning that the content can be scrolled.
Syntax: public bool IsActive { get; }
IsAtBottom
Determines whether the scrollbar is at the bottom, meaning the content is scrolled to the end.
Syntax: public bool IsAtBottom { get; }
IsAtTop
Determines whether the scrollbar is at the top, meaning the content is scrolled to the beginning.
Syntax: public bool IsAtTop { get; }
SearchSelect
Gets or sets the search select filter with which the scroller elements can be found.
Syntax: public
Select
SearchSelect { get; set; }
UpArrow
The button to scroll up.
Syntax: public
Button
UpArrow { get; }
UpdateTolerance
Gets or sets the update tolerance that is used when checking for screen updates and stable screen after every scroll action. Might need to be increased to Large for pages with animations in the scrollable area. Default: Medium
Syntax:
public
ImgDiffTolerance
UpdateTolerance { get; set; } = ImgDiffTolerance.Medium;
Last updated