CGPath 构造函数

定义

重载

CGPath()

创建一个空的 CGPath

CGPath(CGPath)

从提供的 basePath创建一个新的 CGPath

CGPath(IntPtr)
CGPath(CGPath, CGAffineTransform)

CGPath通过应用提供的 从提供reference的路径创建新的transform

CGPath()

创建一个空的 CGPath

public CGPath ();

适用于

CGPath(CGPath)

从提供的 basePath创建一个新的 CGPath

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

参数

basePath
CGPath

适用于

CGPath(IntPtr)

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

参数

handle
IntPtr

nativeint

适用于

CGPath(CGPath, CGAffineTransform)

CGPath通过应用提供的 从提供reference的路径创建新的transform

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

参数

reference
CGPath
transform
CGAffineTransform

适用于