DataView.ActivateWindow

Prototypes

void ActivateWindow()

Parameters

None

Remarks

This method activates a data view window and brings it to the foreground. If the window was hidden, it is made visible.

Example
x = -5:5;
y = x##2;
declare ScatterPlot plot;
plot = ScatterPlot.Create( "Quadratic", x, y, false );
plot.SetWindowPosition( 12.5, 12.5, 75, 75 );
plot.ActivateWindow();
See Also

DataView.SetWindowPosition
DataView.ShowWindow