Last modified: December 2013

URL: https://cxc.cfa.harvard.edu/chips/ahelp/iconify_window.html
Jump to: Description · Examples · Bugs · See Also


AHELP for CIAO 4.11 ChIPS v1

iconify_window

Context: windows

Synopsis

Iconifies the ChIPS window.

Syntax

iconify_window()
iconify_window(id)

Description

The function arguments.

Argument Description
id A ChipsId structure identifying the item.

If no argument is given then the current window is iconified otherwise the argument determines what to hide.


Examples

Example 1

chips> add_window("id=FirstWindow")
chips> add_window("id=SecondWindow")
chips> iconify_window()

Two windows are created; the second window is current after it is created. The current window is iconified.

Example 2

chips> add_window( "id=FirstWindow")
chips> add_window( "id=SecondWindow")
chips> id = ChipsId()
chips> id.window = "FirstWindow"
chips> iconify_window(id)

Two windows are created; the second window is current after it is created. The id.window command sets the window value of the ChipsId structure to the first window. That window is then iconified.


Bugs

See the bugs pages on the ChIPS website for an up-to-date listing of known bugs.

See Also

utilities
clear
windows
add_window, current_window, deiconify_window, delete_window, get_window, print_window, set_window