Interface IRadScrollView
Defines the contract for a RadScrollView control that extends Microsoft.Maui.IView with scrolling capabilities and header/footer support.
Namespace: Telerik.Maui
Assembly: Telerik.Maui.Core.dll
Syntax
public interface IRadScrollView : IView, IElement, ITransform
Properties
BottomLeftFooter
Content
Gets the main content view.
Declaration
IView Content { get; }
Property Value
Microsoft.Maui.IView
|
Footer
LeftHeader
Gets the left header view.
Declaration
IView LeftHeader { get; }
Property Value
Microsoft.Maui.IView
|
ScrollOrientation
Gets the scroll orientation of the scroll view.
Declaration
ScrollOrientation ScrollOrientation { get; }
Property Value
Microsoft.Maui.ScrollOrientation
|
ScrollX
Gets the horizontal scroll position.
Declaration
double ScrollX { get; }
Property Value
System.Double
|
ScrollY
Gets the vertical scroll position.
Declaration
double ScrollY { get; }
Property Value
System.Double
|
TopHeader
Gets the top header view.
Declaration
IView TopHeader { get; }
Property Value
Microsoft.Maui.IView
|
TopLeftHeader
Gets the top-left header view.
Declaration
IView TopLeftHeader { get; }
Property Value
Microsoft.Maui.IView
|