SKPath.Op Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Op(SKPath, SKPathOp) |
Compute the result of a logical operation on two paths. |
Op(SKPath, SKPathOp, SKPath) |
Compute the result of a logical operation on two paths. |
Op(SKPath, SKPathOp)
Compute the result of a logical operation on two paths.
public SkiaSharp.SKPath Op (SkiaSharp.SKPath other, SkiaSharp.SKPathOp op);
Parameters
- other
- SKPath
The second operand.
- op
- SKPathOp
The logical operator.
Returns
Returns the resulting path if the operation was successful, otherwise null
.
Applies to
Op(SKPath, SKPathOp, SKPath)
Compute the result of a logical operation on two paths.
public bool Op (SkiaSharp.SKPath other, SkiaSharp.SKPathOp op, SkiaSharp.SKPath result);
Parameters
- other
- SKPath
The second operand.
- op
- SKPathOp
The logical operator.
Returns
Returns true if the operation was successful, otherwise false.