Difference between revisions of "MGED CMD cmd win"
From BRL-CAD
(New page: Category:MGED =cmd_win= :: This is a developer command. __TOC__ ==Syntax== :cmd_win [open ''id'' | close ''id'' | get ''id'' | set ''id''] ==Argument(s)== : '''id''' :: Valid Comma...) |
m |
||
Line 1: | Line 1: | ||
− | [[Category:MGED]] | + | [[Category:MGED|Cmd_win]] |
− | + | [[Category:MGED developer commands|Cmd_win]] | |
=cmd_win= | =cmd_win= | ||
:: This is a developer command. | :: This is a developer command. |
Latest revision as of 08:45, 18 November 2009
cmd_win[edit]
- This is a developer command.
Contents
Syntax[edit]
- cmd_win [open id | close id | get id | set id]
Argument(s)[edit]
- id
- Valid Command Window id
- open
- This subcommand is used to create the internal data structures for a new command window. If id is already in use, nothing is changed
- close
- This subcommand releases id’s internal data structures. If the referenced command window is tied to a display manager, then that association is also removed.
- set
- This subcommand sets the current command window to id. If this command window is tied to a display manager, that display manager becomes the current display manager.
- get
- This subcommand returns the id of the current command window.
Return Value(s)[edit]
- No Return Values for this command.
Description[edit]
This command is used to maintain internal command window structures.
Example(s)[edit]
- mged> cmd_win open my_id
- Create a command window named my_id.
- mged> cmd_win close my_id
- Closes the command window my_id.
- mged> cmd_win set my_id
- my_id becomes the current command window.
- mged> cmd_win get
- Gets the current command window.
See Also[edit]
Page Generated by David Loman on: 10/11/2007 at: 12:06:05 PM