The SHOW method brings the specified window to the front. The specified window will have the focus and will not be iconified.

Example


; Define the data.
plot1data=[0.4, 0.6, 1.4, 1.6, 1.9, 1.8, 2.8, 2.6, 1.3, 1.3, .09, 0.7]
 
plot2data=[0.6, 0.4, 2.1, 1.2, 1.5, 1.8, 2.3, 3.1, 1.1, 1.7, .07, 0.3]
months=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
 
; Draw the first plot.
p1 = PLOT(months, plot1data, COLOR='blue', $
TITLE='Plot 1', THICK=2)
 
; Draw the second plot.
p2 = PLOT(months, plot2data, TITLE='Plot 2', $
COLOR='orange', THICK=2)
 
; Bring the first plot to the front
p1.window.SHOW

Syntax


window.Show

Arguments


None

Keywords


None

Version History


8.1

Introduced

See Also


Select Method, SetCurrent Method, WINDOW