.\
cgcleanup.pro
Utility
This procedure cleans-up and/or destroys any open graphics or widget windows on the display.
Examples
For example, to destroy all windows on the display:
IDL> cgCleanup
Author information
- Author
FANNING SOFTWARE CONSULTING:
David W. Fanning 1645 Sheely Drive Fort Collins, CO 80526 USA Phone: 970-221-0438 E-mail: david@idlcoyote.com Coyote's Guide to IDL Programming: http://www.idlcoyote.com
- Copyright
Copyright (c) 2012, Fanning Software Consulting, Inc.
- History
Written, 6 October 2012.
Routines
cgCleanUp_v7 [, /ALL] [, /CG] [, /DG]
This procedure cleans up any open graphics windows and widget windows for versions of IDL prior to IDL 8.
cgCleanUp_v8 [, /ALL] [, /CG] [, /DG] [, /FG]
This procedure cleans up any open graphics windows and widget windows for versions of IDL from IDL 8 onward.
cgCleanUp [, /ALL] [, /CG] [, /DG] [, /FG]
This procedure chooses between cleanup for version 7 and earlier of IDL, or version 8 and later.
Routine details
top cgCleanUp_v7
cgCleanUp_v7 [, /ALL] [, /CG] [, /DG]
This procedure cleans up any open graphics windows and widget windows for versions of IDL prior to IDL 8.
Keywords
- ALL in optional type=boolean default=1
Set this keyword if you wish to clean up windows of all types.
- CG in optional type=boolean default=0
Set this keyword if you wish to clean up only Coyote Graphics windows.
- DG in optional type=boolean default=0
Set this keyword if you wish to clean up only Direct Graphics windows.
top cgCleanUp_v8
cgCleanUp_v8 [, /ALL] [, /CG] [, /DG] [, /FG]
This procedure cleans up any open graphics windows and widget windows for versions of IDL from IDL 8 onward.
Keywords
- ALL in optional type=boolean default=1
Set this keyword if you wish to clean up windows of all types.
- CG in optional type=boolean default=0
Set this keyword if you wish to clean up only Coyote Graphics windows.
- DG in optional type=boolean default=0
Set this keyword if you wish to clean up only Direct Graphics windows.
- FG in optional type=boolean default=0
Set this keyword if you wish to clean up only Function Graphics windows.
top cgCleanUp
cgCleanUp [, /ALL] [, /CG] [, /DG] [, /FG]
This procedure chooses between cleanup for version 7 and earlier of IDL, or version 8 and later.
Keywords
- ALL in optional type=boolean default=1
Set this keyword if you wish to clean up windows of all types.
- CG in optional type=boolean default=0
Set this keyword if you wish to clean up only Coyote Graphics windows.
- DG in optional type=boolean default=0
Set this keyword if you wish to clean up only Direct Graphics windows.
- FG in optional type=boolean default=0
Set this keyword if you wish to clean up only Function Graphics windows.
File attributes
Modification date: | Fri Mar 27 11:07:38 2015 |
Lines: | 172 |
Docformat: | rst rst |