Share via


INSAnimationDelegate Interface

Definition

This interface represents the Objective-C protocol NSAnimationDelegate.

[Foundation.Protocol(Name="NSAnimationDelegate", WrapperType=typeof(AppKit.NSAnimationDelegateWrapper))]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="AnimationShouldStart", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(AppKit.NSAnimation) }, ReturnType=typeof(System.Boolean), Selector="animationShouldStart:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="AnimationDidStop", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(AppKit.NSAnimation) }, Selector="animationDidStop:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="AnimationDidEnd", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(AppKit.NSAnimation) }, Selector="animationDidEnd:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ComputeAnimationCurve", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSAnimation), typeof(System.Single) }, ReturnType=typeof(System.Single), Selector="animation:valueForProgress:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="AnimationDidReachProgressMark", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSAnimation), typeof(System.Single) }, Selector="animation:didReachProgressMark:")]
public interface INSAnimationDelegate : IDisposable, ObjCRuntime.INativeObject
[<Foundation.Protocol(Name="NSAnimationDelegate", WrapperType=typeof(AppKit.NSAnimationDelegateWrapper))>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="AnimationShouldStart", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(AppKit.NSAnimation) }, ReturnType=typeof(System.Boolean), Selector="animationShouldStart:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="AnimationDidStop", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(AppKit.NSAnimation) }, Selector="animationDidStop:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="AnimationDidEnd", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(AppKit.NSAnimation) }, Selector="animationDidEnd:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ComputeAnimationCurve", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSAnimation), typeof(System.Single) }, ReturnType=typeof(System.Single), Selector="animation:valueForProgress:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="AnimationDidReachProgressMark", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AppKit.NSAnimation), typeof(System.Single) }, Selector="animation:didReachProgressMark:")>]
type INSAnimationDelegate = 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