'Declaration
Public Overloads Shared Function ToColor( _ ByVal r As Integer, _ ByVal g As Integer, _ ByVal b As Integer _ ) As Color
'Usage
Dim r As Integer Dim g As Integer Dim b As Integer Dim value As Color value = ColorHelper.ToColor(r, g, b)
Parameters
- r
- The int that represents the red part of the Color.
- g
- The int that represents the green part of the Color.
- b
- The int that represents the blue part of the Color.
Return Value
The converted Color.