Color Class |
Namespace: VO
The Color type exposes the following members.
Name | Description | |
---|---|---|
Blue |
A numeric value between 0 (lowest intensity) and 255 (highest intensity) representing the amount of blue in a color.
| |
ColorRef |
A numeric value between 0 and 0xFFFFFF with the combined colors in RGB format.
| |
Green |
A numeric value between 0 (lowest intensity) and 255 (highest intensity) representing the amount of green in a color.
| |
Red |
A numeric value between 0 (lowest intensity) and 255 (highest intensity) representing the amount of red in a color.
|
Name | Description | |
---|---|---|
Destroy | Free memory resources allocated for a VObject object and its derived objects. (Inherited from VObject.) |
1METHOD Darken(oColor) CLASS MyWindow 2RETURN Color{oColor:Red - 9, oColor:Green - 9, ; 3oColor:Blue - 9}