File: IPicture.cs
Web Access
Project: src\src\Graphics\src\Graphics\Graphics.csproj (Microsoft.Maui.Graphics)
namespace Microsoft.Maui.Graphics
{
	public interface IPicture
	{
		void Draw(ICanvas canvas);
 
		float X { get; }
 
		float Y { get; }
 
		float Width { get; }
 
		float Height { get; }
	}
}