Keyword Reference


#comments-start

Specify that an entire section of script should be commented out.

#comments-start
...
...
#comments-end

Remarks

The #comments-start and #comments-end directives can be nested.
You can also use the abbreviated keywords #cs and #ce.
Additionally, the directives themselves can be commented out!

Example

#include <MsgBoxConstants.au3>

#comments-start
        MsgBox($MB_SYSTEMMODAL, "", "This won't display ")
        MsgBox($MB_SYSTEMMODAL, "", "nor will this.")
#comments-end

; #cs
MsgBox($MB_SYSTEMMODAL, "", "This will display if '#cs/#ce' are commented out.")
; #ce