diff options
author | nyamatongwe <devnull@localhost> | 2004-07-22 01:02:15 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2004-07-22 01:02:15 +0000 |
commit | 1e897e643d5acc133f9c90beeec20428d2037e41 (patch) | |
tree | 43b1c8d5d353905b6e9917d9bcd2b6dd335a991d /doc/ScintillaDoc.html | |
parent | 80cef9861be6eb687bace05e989677a3b3df675d (diff) | |
download | scintilla-mirror-1e897e643d5acc133f9c90beeec20428d2037e41.tar.gz |
New method SCI_FINDCOLUMN.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 8cad4e364..7323caa9d 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -898,6 +898,7 @@ struct TextToFind { <a class="message" href="#SCI_GETLINEENDPOSITION">SCI_GETLINEENDPOSITION(int line)</a><br /> <a class="message" href="#SCI_LINELENGTH">SCI_LINELENGTH(int line)</a><br /> <a class="message" href="#SCI_GETCOLUMN">SCI_GETCOLUMN(int position)</a><br /> + <a class="message" href="#SCI_FINDCOLUMN">SCI_FINDCOLUMN(int line, int column)</a><br /> <a class="message" href="#SCI_POSITIONFROMPOINT">SCI_POSITIONFROMPOINT(int x, int y)</a><br /> <a class="message" href="#SCI_POSITIONFROMPOINTCLOSE">SCI_POSITIONFROMPOINTCLOSE(int x, int y)</a><br /> @@ -1226,6 +1227,11 @@ struct TextToFind { characters up to the position on the line. In both cases, double byte characters count as a single character. This is probably only useful with monospaced fonts.</p> + <p><b id="SCI_FINDCOLUMN">SCI_FINDCOLUMN(int line, int column)</b><br /> + This message returns the position of a <code>column</code> on a <code>line</code> + taking the width of tabs into account. It treats a multi-byte character as a single column. + Column numbers, like lines start at 0.</p> + <p><b id="SCI_POSITIONFROMPOINT">SCI_POSITIONFROMPOINT(int x, int y)</b><br /> <b id="SCI_POSITIONFROMPOINTCLOSE">SCI_POSITIONFROMPOINTCLOSE(int x, int y)</b><br /> <code>SCI_POSITIONFROMPOINT</code> finds the closest character position to a point and |