SKPathExtensionsToPath Method

Converts the specified SKPath to a Path object.

Definition

Namespace: KGySoft.Drawing.SkiaSharp
Assembly: KGySoft.Drawing.SkiaSharp (in KGySoft.Drawing.SkiaSharp.dll) Version: 10.0.0-rc.1
C#
public static Path ToPath(
	this SKPath path
)

Parameters

path  SKPath
The SKPath instance to convert to a Path.

Return Value

Path
A Path object that represents the same geometric path as the specified SKPath.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type SKPath. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Exceptions

ArgumentNullExceptionThrown if path is .

See Also