1 write to ScrollX
Microsoft.Maui.Controls (1)
ScrollView\ScrollView.cs (1)
106
ScrollX
= x;
10 references to ScrollX
Microsoft.Maui.Controls (10)
ScrollView\ScrollView.cs (10)
61
var scrollBounds = new Rect(
ScrollX
, ScrollY, Width, Height);
64
return new Point(
ScrollX
, ScrollY);
71
position = x >
ScrollX
? ScrollToPosition.End : ScrollToPosition.Start;
74
position = x >
ScrollX
|| y > ScrollY ? ScrollToPosition.End : ScrollToPosition.Start;
103
if (
ScrollX
== x && ScrollY == y)
117
static readonly BindablePropertyKey ScrollXPropertyKey = BindableProperty.CreateReadOnly(nameof(
ScrollX
), typeof(double), typeof(ScrollView), 0d);
119
/// <summary>Bindable property for <see cref="
ScrollX
"/>.</summary>
397
get =>
ScrollX
;
400
if (
ScrollX
!= value)
414
SetScrolledPosition(
ScrollX
, value);