File: ITextAlignmentElement.cs
Web Access
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls)
#nullable disable
namespace Microsoft.Maui.Controls
{
	interface ITextAlignmentElement
	{
		//note to implementor: implement the properties publicly
		TextAlignment HorizontalTextAlignment { get; }
 
		TextAlignment VerticalTextAlignment { get; }
 
		//note to implementor: but implement the methods explicitly
		void OnHorizontalTextAlignmentPropertyChanged(TextAlignment oldValue, TextAlignment newValue);
	}
}