aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/ScintillaDoc.html
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2014-02-02 18:09:44 +1100
committerNeil <nyamatongwe@gmail.com>2014-02-02 18:09:44 +1100
commit687cd7a0e91208e97bd198cf13f416b0937dd6c3 (patch)
treea6d7f5846f990f253133af659524622292192736 /doc/ScintillaDoc.html
parente9b3faa25f71650ed4c16aeeef893dd72d713525 (diff)
downloadscintilla-mirror-687cd7a0e91208e97bd198cf13f416b0937dd6c3.tar.gz
Added wrap mode SC_WRAP_WHITESPACE which only wraps on whitespace, not on style changes.
From Robert Gieseke.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r--doc/ScintillaDoc.html11
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index 781695a14..306df840a 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -5625,11 +5625,12 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){
<p><b id="SCI_SETWRAPMODE">SCI_SETWRAPMODE(int wrapMode)</b><br />
<b id="SCI_GETWRAPMODE">SCI_GETWRAPMODE</b><br />
Set wrapMode to <code>SC_WRAP_WORD</code> (1) to enable wrapping
- on word boundaries, <code>SC_WRAP_CHAR</code> (2) to enable wrapping
- between any characters, and to <code>SC_WRAP_NONE</code> (0) to disable line
- wrapping. <code>SC_WRAP_CHAR</code> is preferred to
- <code>SC_WRAP_WORD</code> for Asian languages where there is no white space
- between words.</p>
+ on word or style boundaries, <code>SC_WRAP_CHAR</code> (2) to enable wrapping
+ between any characters, <code>SC_WRAP_WHITESPACE</code> (3) to enable
+ wrapping on whitespace, and <code>SC_WRAP_NONE</code> (0) to disable line
+ wrapping. <code>SC_WRAP_CHAR</code> is preferred for Asian languages where
+ there is no white space between words.
+ </p>
<p><b id="SCI_SETWRAPVISUALFLAGS">SCI_SETWRAPVISUALFLAGS(int wrapVisualFlags)</b><br />