Creates a 32-bit integer color value from the specified ARGB components.
int ColorFromArgb(int alpha; int red, int green; int blue)
alpha |
The alpha component. Valid values are 0 through 255. |
red |
The red component. Valid values are 0 through 255. |
green |
The green component. Valid values are 0 through 255. |
blue |
The blue component. Valid values are 0 through 255. |
Example
ColorFromArgb(127; 0; 255; 255)
Returns a semi-transparent cyan color.