File: Core\ITextAlignment.cs
Web Access
Project: src\src\Core\src\Core.csproj (Microsoft.Maui)
namespace Microsoft.Maui
{
	/// <summary>
	/// Provides functionality to be able to align Text.
	/// </summary>
	public interface ITextAlignment
	{
		/// <summary>
		/// Gets the horizontal text alignment.
		/// </summary>
		TextAlignment HorizontalTextAlignment { get; }
 
		/// <summary>
		/// Gets the vertical text alignment.
		/// </summary>
		TextAlignment VerticalTextAlignment { get; }
	}
}