Desktop.IconTextColor
Description
- Set color of text under desktop icons; use the TransIconText auto function to reset color when background changes
Syntax
- Desktop.IconTextColor(r,g,b)
- Desktop.IconTextColor("r g b")
Parameters
- r, g & b
- either:
- (integer) 3 comma-separated integer values:
- r
- red value
- 0<=r<=255
- g
- green value
- 0<=g<=255
- b
- blue value
- 0<=b<=255
- (string) a space-separated string of 3 integers representing an rgb color value
Examples
- Desktop.IconTextColor(0,0,0)
- Changes desktop icon text color to black.
- Desktop.IconTextColor("0 0 0")
- Also changes desktop icon text color to black.
- Desktop.IconTextColor(255, 255, 255)
- Changes desktop icon text color to white.