Table of Contents

Operator implicit operator

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

implicit operator RGBValue((byte, byte, byte))

Implicit operator convertion from tuple with three byte values to RGBValue.

public static implicit operator RGBValue((byte, byte, byte) d)

Parameters

d (byte, byte, byte)

New RGBValue.

Returns

RGBValue

implicit operator RGBValue(SKColor)

Converts the specified SKColor to a RGBValue.

public static implicit operator RGBValue(SKColor color)

Parameters

color SKColor

Returns

RGBValue

implicit operator SKColor(RGBValue)

Converts the specified RGBValue to a SKColor.

public static implicit operator SKColor(RGBValue color)

Parameters

color RGBValue

Returns

SKColor

implicit operator RGBValue(HSVValue)

Implicit operator convertion from HSVValue to RGBValue.

public static implicit operator RGBValue(HSVValue d)

Parameters

d HSVValue

New RGBValue.

Returns

RGBValue

implicit operator HSVValue(RGBValue)

Implicit operator convertion from RGBValue to HSVValue.

public static implicit operator HSVValue(RGBValue d)

Parameters

d RGBValue

New HSVValue.

Returns

HSVValue