runTimeCommand is undoable, queryable, and editable.
Create a command given the specified name. Once the command is created
you can invoke it like any other command. When the command is invoked
it will execute the string attached to the
| Long name (short name) |
[argument types] |
Properties |
query(q)
|
boolean
|
|
|
Puts the command in query mode so that it will return the value of
the specified flag.
In query mode, this flag needs a value.
|
|
edit(e)
|
boolean
|
|
|
Puts the command in edit mode so that it will change the values of
the specified flags.
|
|
exists(ex)
|
boolean
|
|
|
Returns true|false depending upon whether the specified object
exists. Other flags are ignored.
|
|
command(c)
|
string
|
 
|
|
Command to be executed when runTimeCommand is invoked.
In query mode, this flag needs a value.
|
|
annotation(ann)
|
string
|
 
|
|
Description of the command.
In query mode, this flag needs a value.
|
|
category(cat)
|
string
|
 
|
|
Category for the command.
In query mode, this flag needs a value.
|
|
categoryArray(caa)
|
boolean
|
|
|
Return all the run time command categories.
In query mode, this flag needs a value.
|
|
default(d)
|
boolean
|

|
|
Indicate that this run time command is a default command.
Default run time commands will not be saved to preferences.
In query mode, this flag needs a value.
|
|
numberOfCommands(nc)
|
boolean
|
|
|
Return the number of run time commands.
In query mode, this flag needs a value.
|
|
numberOfDefaultCommands(ndc)
|
boolean
|
|
|
Return the number of default run time commands.
In query mode, this flag needs a value.
|
|
numberOfUserCommands(nuc)
|
boolean
|
|
|
Return the number of user run time commands.
In query mode, this flag needs a value.
|
|
commandArray(ca)
|
boolean
|
|
|
Returns an string array containing the names of all the run
time commands.
In query mode, this flag needs a value.
|
|
defaultCommandArray(dca)
|
boolean
|
|
|
Returns an string array containing the names of all the
default run time commands.
In query mode, this flag needs a value.
|
|
userCommandArray(uca)
|
boolean
|
|
|
Returns an string array containing the names of all the
user run time commands.
In query mode, this flag needs a value.
|
|
save(s)
|
boolean
|
|
|
Save all the user run time commands.
|
|
delete(delete)
|
boolean
|
|
|
Delete the specified user run time command.
|
|