maui-linux/Xamarin.Forms.Core/ILineHeightElement.cs

12 строки
242 B
C#

using System.ComponentModel;
namespace Xamarin.Forms.Internals
{
[EditorBrowsable(EditorBrowsableState.Never)]
interface ILineHeightElement
{
double LineHeight { get; }
void OnLineHeightChanged(double oldValue, double newValue);
}
}