summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native/LayoutEventArgs.cs
blob: 060a1212a5d3a4d1fd1aff043355e8d83868cff8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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>
		/// Whether or not the dimensions have changed.
		/// </summary>
		public bool HasChanged
		{
			get;
			internal set;
		}

		/// <summary>
		/// Geometry of the layout area, absolute coordinate
		/// </summary>
		public Rect Geometry
		{
			get;
			set;
		}
	}
}