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