Go to: Synopsis. Return value. Flags. MEL examples.
 cmdScrollFieldReporter [-clear] [-copySelection] [-cutSelection] [-echoAllCommands boolean] [-filterSourceType string] [-hasFocus] [-lineNumbers boolean] [-pasteSelection] [-receiveFocusCommand script] [-saveSelection string] [-saveSelectionToShelf] [-select uint uint] [-selectAll] [-stackTrace boolean] [-suppressErrors boolean] [-suppressInfo boolean] [-suppressResults boolean] [-suppressStackTrace boolean] [-suppressWarnings boolean] [-text string] [-textLength]   
cmdScrollFieldReporter is undoable, queryable, and editable.
A script editor reporter control used to receive and display the history of processed commmands.| string | The name of the reporter control | 
In query mode, return type is based on queried flag.
| Long name (short name) | Argument types | Properties | ||
|---|---|---|---|---|
| -filterSourceType(-fst) | string |     | ||
| 
 | ||||
| -saveSelection(-sv) | string |    | ||
| 
 | ||||
| -saveSelectionToShelf(-svs) |  |    | ||
| 
 | ||||
| -selectAll(-sla) |  |    | ||
| 
 | ||||
| -select(-sl) | uint uint |    | ||
| 
 | ||||
| -clear(-clr) |  |    | ||
| 
 | ||||
| -text(-t) | string |     | ||
| 
 | ||||
| -textLength(-tl) |  |   | ||
| 
 | ||||
| -cutSelection(-ct) |  |    | ||
| 
 | ||||
| -copySelection(-cp) |  |    | ||
| 
 | ||||
| -pasteSelection(-pst) |  |    | ||
| 
 | ||||
| -hasFocus(-hf) |  |   | ||
| 
 | ||||
| -receiveFocusCommand(-rfc) | script |    | ||
| 
 | ||||
| -echoAllCommands(-eac) | boolean |     | ||
| 
 | ||||
| -lineNumbers(-ln) | boolean |     | ||
| 
 | ||||
| -stackTrace(-st) | boolean |     | ||
| 
 | ||||
| -suppressResults(-sr) | boolean |     | ||
| 
 | ||||
| -suppressInfo(-si) | boolean |     | ||
| 
 | ||||
| -suppressWarnings(-sw) | boolean |     | ||
| 
 | ||||
| -suppressErrors(-se) | boolean |     | ||
| 
 | ||||
| -suppressStackTrace(-sst) | boolean |     | ||
| 
 | ||||
|  Flag can appear in Create mode of command |  Flag can appear in Edit mode of command | 
|  Flag can appear in Query mode of command |  Flag can be used more than once in a command. | 
// this will create a tiny window with a command history reporter
window;
    columnLayout;
        cmdScrollFieldReporter -width 200 -height 100;
showWindow;