DataView.ShowThinWindowBorder

Prototypes

void ShowThinWindowBorder( <boolean bThin> )

Parameters

boolean bThin
If bThin is true, the window is displayed with no title bar and a thin border. If bThin is false, the window is displayed with a title bar and a standard border. Calling this method without a parameter is equivalent to calling it with bThin equal to true.

Remarks

This method controls the data view window's border. When creating a matrix of plots, it is desirable to hide the title bar and to use a thin window border. The modules CreateFullScatterMatrix and CreatePlotMatrix make use of this method.

When the title bar is hidden, you cannot use the mouse to move or resize the window or to access the window's control menu. To solve this problem, press ALT+HYPHEN to display the window's control menu and then press 'B' to redisplay the title bar and return to a standard border.

Example
x = -5:5;
y = x##2;
declare ScatterPlot plot;
plot = ScatterPlot.Create( "Quadratic", x, y, false );
plot.ShowThinWindowBorder();
plot.ActivateWindow();