New to Telerik UI for .NET MAUIStart a free 30-day trial

Defines the contract for a RadScrollView control that extends IView with scrolling capabilities and header/footer support.

Definition

Namespace:Telerik.Maui

Assembly:Telerik.Maui.Core.dll

Syntax:

C#
public interface IRadScrollView : IView, IElement, ITransform

Derived Classes: RadScrollView

Properties

Gets the bottom-left footer view.

C#
IView BottomLeftFooter { get; }

Content

IView

Gets the main content view.

C#
IView Content { get; }

IView

Gets the footer view.

C#
IView Footer { get; }

Gets the left header view.

C#
IView LeftHeader { get; }

ScrollOrientation

ScrollOrientation

Gets the scroll orientation of the scroll view.

C#
ScrollOrientation ScrollOrientation { get; }

Gets the horizontal scroll position.

C#
double ScrollX { get; }

Gets the vertical scroll position.

C#
double ScrollY { get; }

Gets the top header view.

C#
IView TopHeader { get; }

Gets the top-left header view.

C#
IView TopLeftHeader { get; }