summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.MacOS/Controls/ScrollViewScrollChangedEventArgs.cs
blob: a8a825c06ed670feb748186a0084f26acedb1709 (plain)
1
2
3
4
5
6
7
8
9
10
using System;
using PointF = CoreGraphics.CGPoint;

namespace Xamarin.Forms.Platform.MacOS
{
	internal class ScrollViewScrollChangedEventArgs : EventArgs
	{
		public PointF CurrentScrollPoint { get; set; }
	}
}