summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IScrollViewController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/IScrollViewController.cs')
-rw-r--r--Xamarin.Forms.Core/IScrollViewController.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/IScrollViewController.cs b/Xamarin.Forms.Core/IScrollViewController.cs
new file mode 100644
index 00000000..c06ddc09
--- /dev/null
+++ b/Xamarin.Forms.Core/IScrollViewController.cs
@@ -0,0 +1,15 @@
+using System;
+
+namespace Xamarin.Forms
+{
+ public interface IScrollViewController : ILayoutController
+ {
+ Point GetScrollPositionForElement(VisualElement item, ScrollToPosition position);
+
+ event EventHandler<ScrollToRequestedEventArgs> ScrollToRequested;
+
+ void SendScrollFinished();
+
+ void SetScrolledPosition(double x, double y);
+ }
+} \ No newline at end of file