diff options
| author | nyamatongwe <devnull@localhost> | 2005-11-08 23:12:22 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2005-11-08 23:12:22 +0000 |
| commit | 4c1651db4d8c142b48a661133319e8405cf0b4b9 (patch) | |
| tree | 2d95241c85b18fb16cf86907e6809be0c06ae9f4 | |
| parent | 25881861e617ceccc934cba23664e4323380b491 (diff) | |
| download | scintilla-mirror-4c1651db4d8c142b48a661133319e8405cf0b4b9.tar.gz | |
Explained point of whitespace flag in folding.
| -rw-r--r-- | doc/ScintillaDoc.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 3fae458bb..fb4ac1420 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -3870,7 +3870,9 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){ <code>SC_FOLDLEVELBASE</code> (1024) to allow unsigned arithmetic on folding levels. There are two addition flag bits. <code>SC_FOLDLEVELWHITEFLAG</code> indicates that the line is blank and allows it to be treated slightly different then its level may indicate. For example, blank - lines should generally not be fold points. <code>SC_FOLDLEVELHEADERFLAG</code> indicates that + lines should generally not be fold points and will be considered part of the preceding section even though + they may have a lesser fold level. + <code>SC_FOLDLEVELHEADERFLAG</code> indicates that the line is a header (fold point).</p> <p>Use <code>SCI_GETFOLDLEVEL(line) & SC_FOLDLEVELNUMBERMASK</code> to get the fold level |
