SKRegion.SetPath 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
SetPath(SKPath) |
Set this region to the area described by the path, clipped to the current region. |
SetPath(SKPath, SKRegion) |
Set this region to the area described by the path, clipped. |
SetPath(SKPath)
Set this region to the area described by the path, clipped to the current region.
public bool SetPath (SkiaSharp.SKPath path);
Parameters
- path
- SKPath
The replacement path.
Returns
Returns true if the resulting region is non-empty.
Remarks
This produces a region that is identical to the pixels that would be drawn by the path (with no anti-aliasing) with the current region as the clip.
Applies to
SetPath(SKPath, SKRegion)
Set this region to the area described by the path, clipped.
public bool SetPath (SkiaSharp.SKPath path, SkiaSharp.SKRegion clip);
Parameters
- path
- SKPath
The replacement path.
- clip
- SKRegion
The clipping region.
Returns
Returns true if the resulting region is non-empty.
Remarks
This produces a region that is identical to the pixels that would be drawn by the path (with no anti-aliasing) with the specified clip.