RadScrollView
Represents a scrollable view control with support for headers, footers, and content areas.
Definition
Namespace:Telerik.Maui.Controls
Assembly:Telerik.Maui.Controls.dll
Syntax:
public class RadScrollView : RadView, IRadScrollView, IView, IElement, ITransform
Inheritance: objectRadViewRadScrollView
Implements:
Inherited Members
Constructors
Initializes a new instance of the RadScrollView class.
public RadScrollView()
Properties
BottomLeftFooter
View
Gets or sets the bottom left footer view.
public View BottomLeftFooter { get; set; }
A View displayed at the bottom left corner of the scroll area.
Content
View
Gets or sets the main content view.
public View Content { get; set; }
A View containing the scrollable content.
Footer
View
Gets or sets the footer view.
public View Footer { get; set; }
A View displayed at the bottom of the scroll area.
LeftHeader
View
Gets or sets the left header view.
public View LeftHeader { get; set; }
A View displayed on the left side of the scroll area.
ScrollOrientation
ScrollOrientation
Gets or sets the scroll orientation.
public ScrollOrientation ScrollOrientation { get; set; }
A ScrollOrientation value that determines the allowed scroll directions.
Implements:
Gets the current horizontal scroll position.
public double ScrollX { get; }
A double representing the horizontal scroll offset.
Implements:
Gets the current vertical scroll position.
public double ScrollY { get; }
A double representing the vertical scroll offset.
Implements:
TopHeader
View
Gets or sets the top header view.
public View TopHeader { get; set; }
A View displayed at the top of the scroll area.
TopLeftHeader
View
Gets or sets the top left header view.
public View TopLeftHeader { get; set; }
A View displayed at the top left corner of the scroll area.
Methods
Scrolls to the specified position asynchronously using scroll arguments.
public void ScrollToAsync(ScrollToArgs args)
The ScrollToArgs containing scroll parameters.
Events
Scrolled
EventHandler<ScrolledEventArgs>
Occurs when the scroll position changes.
public event EventHandler<ScrolledEventArgs> Scrolled