We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
(part of UI)
Returns: color
Parameters: aColor (color)
Returns a color object copied from aColor.
aColor
Note: Always copy a color before modifying it; else you may modify the original.
var aColor = UI.makeColor (255, 0, 0, 1.0); var bColor = UI.copyColor (aColor); bColor.green = 255; // aColor is red // bColor is red=255,Green=255
0.3 Introduced; Docs Valid