File: ITextAttributes.cs
Web Access
Project: src\src\Graphics\src\Graphics\Graphics.csproj (Microsoft.Maui.Graphics)
namespace Microsoft.Maui.Graphics
{
	public interface ITextAttributes
	{
		IFont Font { get; set; }
 
		float FontSize { get; set; }
 
		float Margin { get; set; }
 
		Color TextFontColor { get; set; }
 
		HorizontalAlignment HorizontalAlignment { get; set; }
 
		VerticalAlignment VerticalAlignment { get; set; }
	}
}