Plot.DrawSetTextColor

Prototypes

void DrawSetTextColor( int nColor )

void DrawSetTextColor( int nRed, int nGreen, int nBlue )

Parameters

int nColor
A predefined constant specifying the color of text drawn by subsequent DrawText commands. The valid values are BLACK, BLUE, BROWN, CHARCOAL, CREAM, CYAN, GOLD, GRAY, GREY, GREEN, LILAC, LIME, MAGENTA, MAROON, OLIVE, ORANGE, PINK, PURPLE, RED, ROSE, SALMON, STEEL, TAN, VIOLET, WHITE, and YELLOW.

int nRed, nGreen, nBlue
An RGB specification of the desired color. Each parameter must be an integer in the range [0, 255]. Examples: the triplet (0, 0, 0) represents black; the triplet (255, 255, 255) represents white.

Remarks

This method specifies the color of text drawn by subsequent DrawText commands.

The default text color is the color used by Windows for displaying text in a window.

Example
x = { 1 2 3 4 5 6 7 8 };
y = { 2 1 4 5 6 5 6 9 };
declare ScatterPlot plot;
plot = ScatterPlot.Create( "Sample Data", x, y );
plot.DrawSetTextColor( GREEN );
plot.DrawText( 50, 50, "Center" );
See Also

Plot.DrawText