SKRegion Constructors

Definition

Overloads

SKRegion()

Creates an empty region.

SKRegion(SKPath)

Creates a new region using the area described by the path.

SKRegion(SKRectI)

Creates a new region using the area described by the rectangle.

SKRegion(SKRegion)

Creates a new region by copying an existing region.

SKRegion()

Creates an empty region.

public SKRegion ();

Applies to

SKRegion(SKPath)

Creates a new region using the area described by the path.

public SKRegion (SkiaSharp.SKPath path);

Parameters

path
SKPath

The path to use as the region.

Applies to

SKRegion(SKRectI)

Creates a new region using the area described by the rectangle.

public SKRegion (SkiaSharp.SKRectI rect);

Parameters

rect
SKRectI

The rectangle to use as the region.

Applies to

SKRegion(SKRegion)

Creates a new region by copying an existing region.

public SKRegion (SkiaSharp.SKRegion region);

Parameters

region
SKRegion

The region to copy.

Applies to