Color::MakeARGB method (gdipluscolor.h)

The Color::MakeARGB method creates a 32-bit value that consolidates the specified alpha, red, green, and blue components.

Syntax

ARGB MakeARGB(
  [in] BYTE a,
  [in] BYTE r,
  [in] BYTE g,
  [in] BYTE b
);

Parameters

[in] a

Type: BYTE

Byte that specifies the alpha component.

[in] r

Type: BYTE

Byte that specifies the red component.

[in] g

Type: BYTE

Byte that specifies the green component.

[in] b

Type: BYTE

Byte that specifies the blue component.

Return value

Type: static

This method returns an ARGB value that holds the specified alpha, red, green, and blue components.

Requirements

Requirement Value
Minimum supported client Windows XP, Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Target Platform Windows
Header gdipluscolor.h (include Gdiplus.h)
Library Gdiplus.lib
DLL Gdiplus.dll

See also

Color

Color::GetValue

Color::SetFromCOLORREF