Creates a
Color structure from the four 8-bit ARGB components (alpha, red, green, and blue) values.
Syntax
'Declaration
Public Overloads Shared Function FromArgb( _
ByVal As Integer _
) As Color
'Usage
Dim argb As Integer
Dim value As Color
value = Color.FromArgb(argb)
public static Color FromArgb(
int
)
Parameters
- argb
- The ARGB components.
Return Value
The
Color value that this method creates.
See Also