| AHELP for CIAO 4.5 ChIPS v1 | delete_colorbar |
Context: images |
Synopsis
Delete the specified colorbar.
Syntax
delete_colorbar()
delete_colorbar(ChipsId)
delete_colorbar(colorbar_id)
delete_colorbar("all")
Description
Depending on the argument, the delete_colorbar command deletes the current colorbar, the colorbar indicated in a ChipsId structure or by the colorbar_id, or all colorbars.
- (no argument) - the current colorbar is deleted.
- ChipsId - an optional ChipsId structure containing values to modify the currency state for the command.
- colorbar_id - name given to each object that is created; use this to delete a specific colorbar.
- all - deletes all colorbars.
Example 1
chips> add_colorbar(0, 0.5, ["orientation", "vertical"]) chips> delete_colorbar()
Create a colorbar, then delete it.
Example 2
chips> add_colorbar(0, 0.5, "id=vert orientation=vertical")
chips> add_colorbar(.5, -.05)
chips> delete_colorbar("vert")Two colorbars are created; the second colorbar is current after it is created. The first colorbar is deleted by using its name. The following can also be used to delete a specific colorbar (the advantage for the following is that the window, frame or plot can also be changed in the ChipsId structure):
chips> id = ChipsId() chips> id.colorbar = "vert" chips> delete_colorbar(id)
Bugs
See the bugs pages on the ChIPS website for an up-to-date listing of known bugs.
See Also
- concepts
- chipsid, currency
- images
- add_colorbar, current_colorbar, display_colorbar, get_colorbar, hide_colorbar, move_colorbar, set_colorbar, shuffle_colorbar

![[ChIPS Logo]](../imgs/chips_logo_navbar.gif)