Edit

Share via


SKRegion.SetPath Method

Definition

Overloads

Name Description
SetPath(SKPath)

Sets this region to the area described by the path, clipped to the current region.

SetPath(SKPath, SKRegion)

Sets this region to the area described by the path, clipped.

SetPath(SKPath)

Sets 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

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)

Sets 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

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.

Applies to