summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native/LayoutEventArgs.cs
blob: ddad8039936b40270885741bbff96ee89f87e3fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using ElmSharp;

namespace Xamarin.Forms.Platform.Tizen.Native
{
	/// <summary>
	/// Holds information about size of the area which can be used for layout.
	/// </summary>
	public class LayoutEventArgs : EventArgs
	{
		/// <summary>
		/// Geometry of the layout area, absolute coordinate
		/// </summary>
		public Rect Geometry
		{
			get;
			internal set;
		}
	}
}