File: Core\IElement.cs
Web Access
Project: src\src\Core\src\Core.csproj (Microsoft.Maui)
namespace Microsoft.Maui
{
	public interface IElement
	{
		/// <summary>
		/// Gets or sets the View Handler of the Element.
		/// </summary>
		IElementHandler? Handler { get; set; }
 
		/// <summary>
		/// Gets the Parent of the Element.
		/// </summary>
		IElement? Parent { get; }
	}
}