File: Text\IAttributedText.cs
Web Access
Project: src\src\Graphics\src\Graphics\Graphics.csproj (Microsoft.Maui.Graphics)
using System.Collections.Generic;
 
namespace Microsoft.Maui.Graphics.Text
{
	public interface IAttributedText
	{
		string Text { get; }
		IReadOnlyList<IAttributedTextRun> Runs { get; }
	}
}