Skip to content

TSTool / Command / Comment Block Start /*


Overview

The /* command starts a multi-line comment block and is useful for inserting long comments or temporarily commenting out blocks of commands. See also the */ and # commands. Commands between the /* and */ are not converted to comments but are skipped during processing. See also the # comment documentation for information about comment @ annotations.

Command Editor

The following dialog is used to edit the command and illustrates the command syntax.

CommentBlockStart

/* Command Editor (see also the full-size image)

Command Syntax

The command syntax is as follows:

ACommand(...)
AnotherCommand(...)
/*
ACommentedCommand(...)
AnotherCommentedCommand(...)
*/

The commands between /* and */ lines will be recognized as commands but will not be run.

Examples

See the automated tests.

Troubleshooting

See Also

  • # comment command
  • */ comment block end command