/// <summary> /// If an container lexer is used, scintilla will call this event when a portion of the text needs to be styled /// </summary> public static void OnStyleNeeded(int startPos, int endPos) { SyntaxHighlight.Colorize(startPos, endPos); }