using ESize = ElmSharp.Size; namespace Xamarin.Forms.Platform.Tizen.Native { /// /// Interface of the controls which can measure their size taking into /// account the available area. /// public interface IMeasurable { /// /// Measures the size of the control in order to fit it into the /// available area. /// /// Available width. /// Available height. /// Size of the control that fits the available area. ESize Measure(int availableWidth, int availableHeight); } }