'Declaration
Sub SetColorRGB( _ ByVal color As Integer, _ ByVal red As Integer, _ ByVal green As Integer, _ ByVal blue As Integer _ )
'Usage
Dim instance As IThemeColor Dim color As Integer Dim red As Integer Dim green As Integer Dim blue As Integer instance.SetColorRGB(color, red, green, blue)
Parameters
- color
The integer value (between 0 and 15) that you want to change the mapping for in the color map. See the Remarks for more about how colors are mapped.
- red
- An integer value that specifies the degree of red saturation (red RGB value) for the new color. This can be any value between 0 and 255.
- green
- An integer value that specifies the degree of green saturation (green RGB value) for the new color. This can be any value between 0 and 255.
- blue
- An integer value that specifies the degree of blue saturation (blue RGB value) for the new color. This can be any value between 0 and 255.