File: Text\AttributedTextBlock.cs
Web Access
Project: src\src\Graphics\src\Graphics\Graphics.csproj (Microsoft.Maui.Graphics)
namespace Microsoft.Maui.Graphics.Text
{
	public class AttributedTextBlock
	{
		public string Text { get; }
		public ITextAttributes Attributes { get; }
 
		public AttributedTextBlock(string text, ITextAttributes attributes)
		{
			Text = text;
			Attributes = attributes;
		}
 
		public override string ToString()
		{
			return $"[AttributedTextBlock: Text={Text}, Attributes={Attributes}]";
		}
	}
}