CONTROL OF AUTO FORMATTING

Is it possible to turn off auto format on ";"?
Yes: SyntaxParser.Options &= ~SyntaxOptions.FormatOnLineChange;
But, these options must be set after source code file is loaded.
Hi Rich,
you should also exclude ';' from the SmartFormatChars collection like this:
csParser1.SmartFormatChars = ".ToCharArray(});
Regards,
Andrew