diff options
author | Neil <nyamatongwe@gmail.com> | 2020-03-15 08:11:09 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2020-03-15 08:11:09 +1100 |
commit | eb0879ee85600d100ba4611ed4549c86188e2019 (patch) | |
tree | 62aa6325932c16499fdae73a8a80b5689642764f | |
parent | a58c34864d438fffe91834510c147e8bcfe74f6e (diff) | |
download | scintilla-mirror-eb0879ee85600d100ba4611ed4549c86188e2019.tar.gz |
Bug [#2159]. SC_WRAP_CHAR is not supported for printing.
-rw-r--r-- | doc/ScintillaDoc.html | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 9e1af134e..82ba26a3c 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -5800,17 +5800,16 @@ struct Sci_RangeToFormat { <p><b id="SCI_SETPRINTWRAPMODE">SCI_SETPRINTWRAPMODE(int wrapMode)</b><br /> <b id="SCI_GETPRINTWRAPMODE">SCI_GETPRINTWRAPMODE → int</b><br /> These two functions get and set the printer wrap mode. <code class="parameter">wrapMode</code> can be - set to <code>SC_WRAP_NONE</code> (0), <code>SC_WRAP_WORD</code> (1) or - <code>SC_WRAP_CHAR</code> (2). The default is + set to <code>SC_WRAP_NONE</code> (0) or <code>SC_WRAP_WORD</code> (1). + The default is <code>SC_WRAP_WORD</code>, which wraps printed output so that all characters fit into the print rectangle. If you set <code>SC_WRAP_NONE</code>, each line of text generates one line of output and the line is truncated if it is too long to fit into the print area.<br /> <code>SC_WRAP_WORD</code> tries to wrap only between words as indicated by white space or style changes although if a word is longer than a line, it will be wrapped before - the line end. <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> + the line end. <br /> + <code>SC_WRAP_CHAR</code> is not supported for printing.</p> <h2 id="DirectAccess">Direct access</h2> <code><a class="message" href="#SCI_GETDIRECTFUNCTION">SCI_GETDIRECTFUNCTION → pointer</a><br /> |