using System; namespace Xamarin.Forms.Platform.Tizen.Native { /// /// Holds information about size of the area which can be used for layout. /// public class LayoutEventArgs : EventArgs { /// /// Whether or not the dimensions have changed. /// public bool HasChanged { get; internal set; } /// /// X coordinate of the layout area, relative to the main window. /// public int X { get; internal set; } /// /// Y coordinate of the layout area, relative to the main window. /// public int Y { get; internal set; } /// /// Width of the layout area. /// public int Width { get; internal set; } /// /// Height of the layout area. /// public int Height { get; internal set; } } }