'Declaration
Public Overloads Shared Function ToHtmlColor( _ ByVal r As Integer, _ ByVal g As Integer, _ ByVal b As Integer _ ) As String
'Usage
Dim r As Integer Dim g As Integer Dim b As Integer Dim value As String value = ColorHelper.ToHtmlColor(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 HTML string that represents the converted Color.