ExecuteCommandFlags Enum
The flags that can be used when executing a command through the ExecuteCommand function.
AppendHistorywill add the command to the console history.Echowill print the command to the console output.SuppressOutputwill prevent any output from the command to be printed to the console.- the
Defaultflag is equal toAppendHistory | Echo, as if the user typed it in the console.
enum ExecuteCommandFlags {
None = 0,
AppendHistory = 1,
Echo = 2,
SuppressOutput = 8,
Default = 3
}