ExecuteCommandFlags Enum

The flags that can be used when executing a command through the ExecuteCommand function.

  • AppendHistory will add the command to the console history.
  • Echo will print the command to the console output.
  • SuppressOutput will prevent any output from the command to be printed to the console.
  • the Default flag is equal to AppendHistory | Echo, as if the user typed it in the console.
enum ExecuteCommandFlags {
None = 0,
AppendHistory = 1,
Echo = 2,
SuppressOutput = 8,
Default = 3
}