File: Core\IPlaceholder.cs
Web Access
Project: src\src\Core\src\Core.csproj (Microsoft.Maui)
using Microsoft.Maui.Graphics;
 
namespace Microsoft.Maui
{
	/// <summary>
	/// Provides functionality to be able to use a Placeholder.
	/// </summary>
	public interface IPlaceholder
	{
		/// <summary>
		/// Gets the placeholder or hint text.
		/// </summary>
		string Placeholder { get; }
 
		/// <summary>
		/// Gets or sets the placeholder text color.
		/// </summary>
		Color PlaceholderColor { get; set; }
	}
}