Share via


ICIDepthOfFieldProtocol Interface

Definition

This interface represents the Objective-C protocol CIDepthOfField.

[Foundation.Protocol(Name="CIDepthOfField", WrapperType=typeof(CoreImage.CIDepthOfFieldProtocolWrapper))]
[Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.Strong, GetterSelector="inputImage", IsProperty=true, IsRequired=true, IsStatic=false, Name="InputImage", PropertyType=typeof(CoreImage.CIImage), Selector="inputImage", SetterSelector="setInputImage:")]
[Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.UnsafeUnretained, GetterSelector="point0", IsProperty=true, IsRequired=true, IsStatic=false, Name="InputPoint0", PropertyType=typeof(CoreGraphics.CGPoint), Selector="point0", SetterSelector="setPoint0:")]
[Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.UnsafeUnretained, GetterSelector="point1", IsProperty=true, IsRequired=true, IsStatic=false, Name="InputPoint1", PropertyType=typeof(CoreGraphics.CGPoint), Selector="point1", SetterSelector="setPoint1:")]
[Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.None, GetterSelector="saturation", IsProperty=true, IsRequired=true, IsStatic=false, Name="Saturation", PropertyType=typeof(System.Single), Selector="saturation", SetterSelector="setSaturation:")]
[Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.None, GetterSelector="unsharpMaskRadius", IsProperty=true, IsRequired=true, IsStatic=false, Name="UnsharpMaskRadius", PropertyType=typeof(System.Single), Selector="unsharpMaskRadius", SetterSelector="setUnsharpMaskRadius:")]
[Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.None, GetterSelector="unsharpMaskIntensity", IsProperty=true, IsRequired=true, IsStatic=false, Name="UnsharpMaskIntensity", PropertyType=typeof(System.Single), Selector="unsharpMaskIntensity", SetterSelector="setUnsharpMaskIntensity:")]
[Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.None, GetterSelector="radius", IsProperty=true, IsRequired=true, IsStatic=false, Name="Radius", PropertyType=typeof(System.Single), Selector="radius", SetterSelector="setRadius:")]
public interface ICIDepthOfFieldProtocol : CoreImage.ICIFilterProtocol, IDisposable
[<Foundation.Protocol(Name="CIDepthOfField", WrapperType=typeof(CoreImage.CIDepthOfFieldProtocolWrapper))>]
[<Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.Strong, GetterSelector="inputImage", IsProperty=true, IsRequired=true, IsStatic=false, Name="InputImage", PropertyType=typeof(CoreImage.CIImage), Selector="inputImage", SetterSelector="setInputImage:")>]
[<Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.UnsafeUnretained, GetterSelector="point0", IsProperty=true, IsRequired=true, IsStatic=false, Name="InputPoint0", PropertyType=typeof(CoreGraphics.CGPoint), Selector="point0", SetterSelector="setPoint0:")>]
[<Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.UnsafeUnretained, GetterSelector="point1", IsProperty=true, IsRequired=true, IsStatic=false, Name="InputPoint1", PropertyType=typeof(CoreGraphics.CGPoint), Selector="point1", SetterSelector="setPoint1:")>]
[<Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.None, GetterSelector="saturation", IsProperty=true, IsRequired=true, IsStatic=false, Name="Saturation", PropertyType=typeof(System.Single), Selector="saturation", SetterSelector="setSaturation:")>]
[<Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.None, GetterSelector="unsharpMaskRadius", IsProperty=true, IsRequired=true, IsStatic=false, Name="UnsharpMaskRadius", PropertyType=typeof(System.Single), Selector="unsharpMaskRadius", SetterSelector="setUnsharpMaskRadius:")>]
[<Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.None, GetterSelector="unsharpMaskIntensity", IsProperty=true, IsRequired=true, IsStatic=false, Name="UnsharpMaskIntensity", PropertyType=typeof(System.Single), Selector="unsharpMaskIntensity", SetterSelector="setUnsharpMaskIntensity:")>]
[<Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.None, GetterSelector="radius", IsProperty=true, IsRequired=true, IsStatic=false, Name="Radius", PropertyType=typeof(System.Single), Selector="radius", SetterSelector="setRadius:")>]
type ICIDepthOfFieldProtocol = interface
    interface INativeObject
    interface IDisposable
    interface ICIFilterProtocol
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.

Properties

Name Description
Handle

Handle (pointer) to the unmanaged object representation.

(Inherited from INativeObject)
InputImage

Gets or sets an image to filter.

InputPoint0

Gets or sets the first endpoint of the line segment that represents the in-focus region.

InputPoint1

Gets or sets the second endpoint of the line segment that represents the in-focus region.

OutputImage (Inherited from ICIFilterProtocol)
Radius

Gets or sets the unsharp mask radius for the out-of-focus region.

Saturation

Gets or sets a value that controls by how much to adjust the saturation of the in-focus region.

UnsharpMaskIntensity

Gets or sets the intensity of the unsharp mask for the in-focus region.

UnsharpMaskRadius

Gets or sets the radius of the unsharp mask for the in-focus region.

Extension Methods

Name Description
GetHandle(INativeObject)
GetNonNullHandle(INativeObject, String)

Applies to