Color Constructor (Typed) | |
Construct a color
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax Remarks
If the first and second argument are both numeric and the second argument is -1, X# will treat the first number as the colorref of the color object.
In that case the first number indicates the standard color to create, specified as one of the following constants:
Constant | Color |
---|
COLORBLACK | Black |
COLORBLUE | Blue |
COLORCYAN | Cyan |
COLORGREEN | Green |
COLORMAGENTA | Magenta |
COLORRED | Red |
COLORWHITE | White |
COLORYELLOW | Yellow |
Examples
The following example defines some colors:
1oRed := Color{COLORRED}
2oWhite := Color{ 255, 255, 255}
3oMediumAquamarine := Color{ 50, 204, 153}
4oBlack := Color{ 0, 0, 0}
5oBlue := Color{ 0, 0, 255}
6oCadetBlue := Color{ 95, 159, 159}
7oCornflowerBlue := Color{ 66, 66, 111}
8oDarkSlateBlue := Color{ 107, 35, 142}
See Also