From 4d3c1e4b29af5bbb4ec8e62c31dacdb69c06ca12 Mon Sep 17 00:00:00 2001
From: nyamatongwe
To set a non-folding margin 1 use SCI_SETMARGINMASKN(1, ~SC_MASK_FOLDERS); to
- set a folding margin 2 use SCI_SETMARGINMASKN(2, SC_MASK_FOLDERS). This is the
- default set by Scintilla. ~SC_MASK_FOLDERS is 0x1FFFFFF in hexadecimal or 33554431
+
To set a non-folding margin 1 use SCI_SETMARGINMASKN(1, ~SC_MASK_FOLDERS)
+ which is the default set by Scintilla.
+ To set a folding margin 2 use SCI_SETMARGINMASKN(2, SC_MASK_FOLDERS).
+ ~SC_MASK_FOLDERS is 0x1FFFFFF in hexadecimal or 33554431
decimal. Of course, you may need to display all 32 symbols in a margin, in which case use
SCI_SETMARGINMASKN(margin, -1).