Skip to content

Instantly share code, notes, and snippets.

@jcouture100
jcouture100 / MsSqlRecipe.cs
Last active September 13, 2023 12:30
ScintillaNET MSSQL Recipe
// Reset the styles
scintilla.StyleResetDefault();
scintilla.Styles[Style.Default].Font = "Courier New";
scintilla.Styles[Style.Default].Size = 10;
scintilla.StyleClearAll();
// Set the SQL Lexer
scintilla.Lexer = Lexer.Sql;
// Show line numbers