スクリプト内でコメントアウトする部分を指定します。
#comments-start
...
...
#comments-end
パラメータ
なし。
注意
#comments-start、#comments-end による指定は入れ子構造にできます。
関連
例
#comments-start
MsgBox(4096, "", "This won't be executed")
MsgBox(4096, "", "Or this")
#comments-end
;;; #cs
MsgBox(4096, "", "This will print if '#cs' is commented out.")
#ce