FromArgb Method
FromArgb(int)
Converts the color from an ARGB integer.
Declaration
public static ColorF FromArgb(int argb)
Parameters
Type |
Name |
Description |
int |
argb |
A packed integer containing all four color components in ARGB order
|
Returns
Type |
Description |
ColorF |
A color.
|
FromArgb(int, int, int)
Creates a ColorF structure from the specified 8-bit color values (red, green, and blue). The alpha value is implicitly fully opaque.
Declaration
public static ColorF FromArgb(int red, int green, int blue)
Parameters
Type |
Name |
Description |
int |
red |
|
int |
green |
|
int |
blue |
|
Returns
FromArgb(int, int, int, int)
Creates a ColorF structure from the four ARGB component (alpha, red, green, and blue) values.
Declaration
public static ColorF FromArgb(int alpha, int red, int green, int blue)
Parameters
Returns