aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2011-09-23 14:56:23 +1000
committernyamatongwe <unknown>2011-09-23 14:56:23 +1000
commit554c74012aab4802c77a6346c20d11ae7d7b7d32 (patch)
tree3164528706b698cdeeb6289c91384d2130663dd6
parent4d565849231de130f0605b966ebc75e3a4e89217 (diff)
downloadscintilla-mirror-554c74012aab4802c77a6346c20d11ae7d7b7d32.tar.gz
Documentation of SCI_GETALLLINESVISIBLE.
-rw-r--r--doc/ScintillaDoc.html10
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html
index c733db471..ca1a29bb4 100644
--- a/doc/ScintillaDoc.html
+++ b/doc/ScintillaDoc.html
@@ -4843,6 +4843,7 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){
<a class="message" href="#SCI_SHOWLINES">SCI_SHOWLINES(int lineStart, int lineEnd)</a><br />
<a class="message" href="#SCI_HIDELINES">SCI_HIDELINES(int lineStart, int lineEnd)</a><br />
<a class="message" href="#SCI_GETLINEVISIBLE">SCI_GETLINEVISIBLE(int line)</a><br />
+ <a class="message" href="#SCI_GETALLLINESVISIBLE">SCI_GETALLLINESVISIBLE</a><br />
<a class="message" href="#SCI_SETFOLDLEVEL">SCI_SETFOLDLEVEL(int line, int level)</a><br />
<a class="message" href="#SCI_GETFOLDLEVEL">SCI_GETFOLDLEVEL(int line)</a><br />
<a class="message" href="#SCI_SETFOLDFLAGS">SCI_SETFOLDFLAGS(int flags)</a><br />
@@ -4878,9 +4879,14 @@ sptr_t CallScintilla(unsigned int iMessage, uptr_t wParam, sptr_t lParam){
<p><b id="SCI_SHOWLINES">SCI_SHOWLINES(int lineStart, int lineEnd)</b><br />
<b id="SCI_HIDELINES">SCI_HIDELINES(int lineStart, int lineEnd)</b><br />
<b id="SCI_GETLINEVISIBLE">SCI_GETLINEVISIBLE(int line)</b><br />
+ <b id="SCI_GETALLLINESVISIBLE">SCI_GETALLLINESVISIBLE</b><br />
The first two messages mark a range of lines as visible or invisible and then redraw the
- display. The third message reports on the visible state of a line and returns 1 if it is
- visible and 0 if it is not visible. These messages have no effect on fold levels or fold
+ display.
+ <code>SCI_GETLINEVISIBLE</code> reports on the visible state of a line and returns 1 if it is
+ visible and 0 if it is not visible.
+ <code>SCI_GETALLLINESVISIBLE</code> returns 1 if all lines are visible and 0
+ if some lines are hidden.
+ These messages have no effect on fold levels or fold
flags. The first line can not be hidden.</p>
<p><b id="SCI_SETFOLDLEVEL">SCI_SETFOLDLEVEL(int line, int level)</b><br />