Plot.DrawSetTextSize

Prototypes

void DrawSetTextSize( int nSize )

Parameters

int nSize
The point size (units of 1/72 inch) of text drawn by subsequent DrawText commands.

Remarks

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

The default text size is 9 point (9/72 inch).

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.DrawSetTextSize( 20 );
plot.DrawText( 50, 50, "Center" );
See Also

Plot.DrawText