INSGestureRecognizerDelegate Interface

Definition

This interface represents the Objective-C protocol NSGestureRecognizerDelegate.

[Foundation.Protocol(Name="NSGestureRecognizerDelegate", WrapperType=typeof(AppKit.NSGestureRecognizerDelegateWrapper))]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldBegin", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(AppKit.NSGestureRecognizer) }, ReturnType=typeof(System.Boolean), Selector="gestureRecognizerShouldBegin:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldRecognizeSimultaneously", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSGestureRecognizer), typeof(AppKit.NSGestureRecognizer) }, ReturnType=typeof(System.Boolean), Selector="gestureRecognizer:shouldRecognizeSimultaneouslyWithGestureRecognizer:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldRequireFailure", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSGestureRecognizer), typeof(AppKit.NSGestureRecognizer) }, ReturnType=typeof(System.Boolean), Selector="gestureRecognizer:shouldRequireFailureOfGestureRecognizer:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldBeRequiredToFail", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSGestureRecognizer), typeof(AppKit.NSGestureRecognizer) }, ReturnType=typeof(System.Boolean), Selector="gestureRecognizer:shouldBeRequiredToFailByGestureRecognizer:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldAttemptToRecognize", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSGestureRecognizer), typeof(AppKit.NSEvent) }, ReturnType=typeof(System.Boolean), Selector="gestureRecognizer:shouldAttemptToRecognizeWithEvent:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldReceiveTouch", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSGestureRecognizer), typeof(AppKit.NSTouch) }, ReturnType=typeof(System.Boolean), Selector="gestureRecognizer:shouldReceiveTouch:")]
public interface INSGestureRecognizerDelegate : IDisposable, ObjCRuntime.INativeObject
[<Foundation.Protocol(Name="NSGestureRecognizerDelegate", WrapperType=typeof(AppKit.NSGestureRecognizerDelegateWrapper))>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldBegin", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(AppKit.NSGestureRecognizer) }, ReturnType=typeof(System.Boolean), Selector="gestureRecognizerShouldBegin:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldRecognizeSimultaneously", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSGestureRecognizer), typeof(AppKit.NSGestureRecognizer) }, ReturnType=typeof(System.Boolean), Selector="gestureRecognizer:shouldRecognizeSimultaneouslyWithGestureRecognizer:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldRequireFailure", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSGestureRecognizer), typeof(AppKit.NSGestureRecognizer) }, ReturnType=typeof(System.Boolean), Selector="gestureRecognizer:shouldRequireFailureOfGestureRecognizer:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldBeRequiredToFail", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSGestureRecognizer), typeof(AppKit.NSGestureRecognizer) }, ReturnType=typeof(System.Boolean), Selector="gestureRecognizer:shouldBeRequiredToFailByGestureRecognizer:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldAttemptToRecognize", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSGestureRecognizer), typeof(AppKit.NSEvent) }, ReturnType=typeof(System.Boolean), Selector="gestureRecognizer:shouldAttemptToRecognizeWithEvent:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldReceiveTouch", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSGestureRecognizer), typeof(AppKit.NSTouch) }, ReturnType=typeof(System.Boolean), Selector="gestureRecognizer:shouldReceiveTouch:")>]
type INSGestureRecognizerDelegate = interface
    interface INativeObject
    interface IDisposable
Derived
Attributes
Implements

Remarks

A class that implements this interface (and subclasses NSObject) will be exported to Objective-C as implementing the Objective-C protocol this interface represents.

A class may also implement members from this interface to implement members from the protocol.

Applies to