summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native/LayoutEventArgs.cs
blob: 6668f8d761583dec98e9664d61d826f81a6b4b53 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
using System;

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>
		/// X coordinate of the layout area, relative to the main window.
		/// </summary>
		public int X
		{
			get;
			internal set;
		}

		/// <summary>
		/// Y coordinate of the layout area, relative to the main window.
		/// </summary>
		public int Y
		{
			get;
			internal set;
		}

		/// <summary>
		/// Width of the layout area.
		/// </summary>
		public int Width
		{
			get;
			internal set;
		}

		/// <summary>
		/// Height of the layout area.
		/// </summary>
		public int Height
		{
			get;
			internal set;
		}
	}
}