ClassRadScrollView
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
RadScrollView()
Initializes a new instance of the RadScrollView class.
Declaration
public RadScrollView()
Properties
BottomLeftFooter
Gets or sets the bottom left footer view.
Declaration
public View BottomLeftFooter { get; set; }
Property Value
View
A View displayed at the bottom left corner of the scroll area.
Content
Gets or sets the main content view.
Declaration
public View Content { get; set; }
Property Value
View
A View containing the scrollable content.
Footer
Gets or sets the footer view.
Declaration
public View Footer { get; set; }
Property Value
View
A View displayed at the bottom of the scroll area.
LeftHeader
Gets or sets the left header view.
Declaration
public View LeftHeader { get; set; }
Property Value
View
A View displayed on the left side of the scroll area.
ScrollOrientation
Gets or sets the scroll orientation.
Declaration
public ScrollOrientation ScrollOrientation { get; set; }
Property Value
ScrollOrientation
A ScrollOrientation value that determines the allowed scroll directions.
Implements
ScrollX
Gets the current horizontal scroll position.
ScrollY
Gets the current vertical scroll position.
TopHeader
Gets or sets the top header view.
Declaration
public View TopHeader { get; set; }
Property Value
View
A View displayed at the top of the scroll area.
TopLeftHeader
Gets or sets the top left header view.
Declaration
public View TopLeftHeader { get; set; }
Property Value
View
A View displayed at the top left corner of the scroll area.
Methods
ScrollToAsync(ScrollToArgs)
Scrolls to the specified position asynchronously using scroll arguments.
Declaration
public void ScrollToAsync(ScrollToArgs args)
Parameters
args
The ScrollToArgs containing scroll parameters.
ScrollToAsync(double, double, bool)
Scrolls to the specified position asynchronously.
Events
Scrolled
Occurs when the scroll position changes.
Declaration
public event EventHandler<ScrolledEventArgs> Scrolled
Event Value
EventHandler<ScrolledEventArgs>