DataView.ShowWindow

Prototypes

void ShowWindow( <boolean bShow> )

Parameters

boolean bShow
If bShow is true, the window associated with the DataView is displayed. If bShow is false, the window is hidden. Calling this method without a parameter is equivalent to calling it with bShow equal to true.

Remarks

This method shows or hides the window associated with the DataView.

Example
x = { 0 10 10 0 1 9 9 1 2 8 8 2 3 7 7 3 4 6 6 4 5 };
y = { 0 0 10 10 1 1 9 9 2 2 8 8 3 3 7 7 4 4 6 6 5 };
z = { 0 0 0 0 1 1 1 1 2 2 2 2 3 3 3 3 4 4 4 4 5 };
declare ContourPlot plot;
plot = ContourPlot.Create( "Pyramid", x, y, z, false );
plot.ShowContours( false );
plot.ShowWindow();
See Also

DataView.ActivateWindow