Edit

Share via


CGPath Constructors

Definition

Overloads

CGPath()

Creates an empty CGPath.

CGPath(CGPath)

Creates an new CGPath from the provided basePath.

CGPath(IntPtr)
CGPath(CGPath, CGAffineTransform)

Creates an new CGPath from the provided reference path by applying the provided transform

CGPath()

Creates an empty CGPath.

public CGPath ();

Applies to

CGPath(CGPath)

Creates an new CGPath from the provided basePath.

public CGPath (CoreGraphics.CGPath basePath);
new CoreGraphics.CGPath : CoreGraphics.CGPath -> CoreGraphics.CGPath

Parameters

basePath
CGPath

Applies to

CGPath(IntPtr)

public CGPath (IntPtr handle);
new CoreGraphics.CGPath : nativeint -> CoreGraphics.CGPath

Parameters

handle
IntPtr

nativeint

Applies to

CGPath(CGPath, CGAffineTransform)

Creates an new CGPath from the provided reference path by applying the provided transform

public CGPath (CoreGraphics.CGPath reference, CoreGraphics.CGAffineTransform transform);
new CoreGraphics.CGPath : CoreGraphics.CGPath * CoreGraphics.CGAffineTransform -> CoreGraphics.CGPath

Parameters

reference
CGPath
transform
CGAffineTransform

Applies to