Plot.GetPlotAreaBackgroundColor

Prototypes

int GetPlotAreaBackgroundColor()

Return Value

The return value is the background color of the Plot Area in RGB integer form. This integer color value has the hexadecimal form 00rrggbbX, where rr specifies the color's red component (00–FF hexadecimal), gg specifies the color's green component (00–FF hexadecimal), and bb specifies the color's blue component (00–FF hexadecimal).

Parameters

None

Remarks

This method returns the background color of the plot's Plot Area.

Example
declare DataObject dobj;
dobj = DataObject.CreateFromFile( "baseball" );
declare ScatterPlot plot;
plot = ScatterPlot.Create( dobj, "no_hits", "no_home" );
color = plot.GetPlotAreaBackgroundColor();
print color[format=hex8.];
See Also

Plot.GetGraphAreaBackgroundColor