This documentation is archived and is not being maintained.
Color::FromArgb Method
Visual Studio 2008
Creates a Color structure from the four 8-bit ARGB components (alpha, red, green, and blue) values.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
| Name | Description | |
|---|---|---|
|
FromArgb(Int32) | Creates a Color structure from a 32-bit ARGB value. |
|
FromArgb(Int32, Color) | Creates a Color structure from the specified Color structure, but with the new specified alpha value. Although this method allows a 32-bit value to be passed for the alpha value, the value is limited to 8 bits. |
|
FromArgb(Int32, Int32, Int32) | Creates a Color structure from the specified 8-bit color values (red, green, and blue). The alpha value is implicitly 255 (fully opaque). Although this method allows a 32-bit value to be passed for each color component, the value of each component is limited to 8 bits. |
|
FromArgb(Int32, Int32, Int32, Int32) | Creates a Color structure from the four ARGB component (alpha, red, green, and blue) values. Although this method allows a 32-bit value to be passed for each component, the value of each component is limited to 8 bits. |
Show: