This documentation is for the old version. Go to the latest Graphics Mill docs

Color.FromArgb64 Method

Returns RgbColor class instance constructed from numeric 64-bit representation of RGB value with alpha channel.

Namespace: Aurigma.GraphicsMill
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Shared Function FromArgb64 ( _
	argb As Long _
) As RgbColor
C#
public static RgbColor FromArgb64(
	long argb
)

Parameters

argb

Type: System.Int64

Numeric representation of the ARGB value.

Return Value

RgbColor class instance constructed from given number.

Remarks

Low word (2 bytes) of this 64-bit value contains blue channel, next word contains green channel, next one is a red channel, and the high word is an alpha channel. You can also use non-extended version of this method, i.e. FromArgb32(Int32).

See Also

Reference