File: IPinchGestureController.cs
Web Access
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls)
#nullable disable
using Microsoft.Maui.Graphics;
 
namespace Microsoft.Maui.Controls
{
	public interface IPinchGestureController
	{
		bool IsPinching { get; set; }
 
		void SendPinch(Element sender, double scale, Point currentScalePoint);
 
		void SendPinchCanceled(Element sender);
 
		void SendPinchEnded(Element sender);
 
		void SendPinchStarted(Element sender, Point intialScalePoint); //TODO: intial should be initial, but this is a breaking ABI change. Consider changing for .NET 8
	}
}