Share via


UIBezierPath.Fill Method

Definition

Overloads

Name Description
Fill()
Fill(CGBlendMode, NFloat)

Fills the region enclosed by the path.

Fill()

[Foundation.Export("fill")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public virtual void Fill();
[<Foundation.Export("fill")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
abstract member Fill : unit -> unit
override this.Fill : unit -> unit
Attributes

Applies to

Fill(CGBlendMode, NFloat)

Fills the region enclosed by the path.

[Foundation.Export("fillWithBlendMode:alpha:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public virtual void Fill(CoreGraphics.CGBlendMode blendMode, System.Runtime.InteropServices.NFloat alpha);
[<Foundation.Export("fillWithBlendMode:alpha:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
abstract member Fill : CoreGraphics.CGBlendMode * System.Runtime.InteropServices.NFloat -> unit
override this.Fill : CoreGraphics.CGBlendMode * System.Runtime.InteropServices.NFloat -> unit

Parameters

blendMode
CGBlendMode
alpha
NFloat
Attributes

Remarks

This can be used from a background thread.

Applies to