Table of Contents

Operator implicit operator

Namespace
Alternet.Drawing
Assembly
Alternet.UI.Common.dll

implicit operator RectI((int, int, int, int))

Implicit operator convertion from tuple with four int values to RectI.

public static implicit operator RectI((int, int, int, int) d)

Parameters

d (int, int, int, int)

New rectangle value.

Returns

RectI

implicit operator RectI((PointI, SizeI))

Implicit operator convertion from tuple (PointI, SizeI) to RectI.

public static implicit operator RectI((PointI, SizeI) d)

Parameters

d (PointI, SizeI)

New rectangle value.

Returns

RectI

implicit operator SKRectI(RectI)

Implicit operator convertion from RectI to SKRectI.

public static implicit operator SKRectI(RectI rect)

Parameters

rect RectI

Rectangle.

Returns

SKRectI

implicit operator RectI(SKRectI)

Implicit operator convertion from SKRectI to RectI.

public static implicit operator RectI(SKRectI rect)

Parameters

rect SKRectI

Rectangle.

Returns

RectI

implicit operator Rectangle(RectI)

Creates a Rectangle with the coordinates of the specified RectI

public static implicit operator Rectangle(RectI p)

Parameters

p RectI

Returns

Rectangle

implicit operator RectI(Rectangle)

Creates a RectI with the coordinates of the specified Rectangle

public static implicit operator RectI(Rectangle p)

Parameters

p Rectangle

Returns

RectI