Edit

Share via


SKRectI.Create Method

Definition

Overloads

Create(Int32, Int32, Int32, Int32)

Creates a new rectangle with the specified ___location and size.

Create(Int32, Int32)

Creates a new rectangle with the specified width and height.

Create(SKPointI, SKSizeI)

Creates a new rectangle with the specified ___location and size.

Create(SKSizeI)

Creates a new rectangle with the specified size.

Create(Int32, Int32, Int32, Int32)

Creates a new rectangle with the specified ___location and size.

public static SkiaSharp.SKRectI Create(int x, int y, int width, int height);

Parameters

x
Int32

The x-coordinate.

y
Int32

The y-coordinate.

width
Int32

The rectangle width.

height
Int32

The rectangle height.

Returns

Returns the new rectangle.

Applies to

Create(Int32, Int32)

Creates a new rectangle with the specified width and height.

public static SkiaSharp.SKRectI Create(int width, int height);

Parameters

width
Int32

The rectangle width.

height
Int32

The rectangle height.

Returns

Returns the new rectangle.

Applies to

Create(SKPointI, SKSizeI)

Creates a new rectangle with the specified ___location and size.

public static SkiaSharp.SKRectI Create(SkiaSharp.SKPointI ___location, SkiaSharp.SKSizeI size);

Parameters

___location
SKPointI

The rectangle ___location.

size
SKSizeI

The rectangle size.

Returns

Returns the new rectangle.

Applies to

Create(SKSizeI)

Creates a new rectangle with the specified size.

public static SkiaSharp.SKRectI Create(SkiaSharp.SKSizeI size);

Parameters

size
SKSizeI

The rectangle size.

Returns

Returns the new rectangle.

Applies to