aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-06-08 10:13:35 +0000
committernyamatongwe <devnull@localhost>2000-06-08 10:13:35 +0000
commitff0018fbc36d8c93814b9cb3d0df53bafd4ef6b6 (patch)
treeb6f995d8a0da6e0aced8372b4fd598304fe02437 /src/Document.h
parentf3fa55b3b910e4949cb2dda8cf24fb15aec84ecf (diff)
downloadscintilla-mirror-ff0018fbc36d8c93814b9cb3d0df53bafd4ef6b6.tar.gz
Added GetColumn that determines the column of a position.
Diffstat (limited to 'src/Document.h')
-rw-r--r--src/Document.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Document.h b/src/Document.h
index 92e4ff14f..64955639e 100644
--- a/src/Document.h
+++ b/src/Document.h
@@ -124,6 +124,7 @@ public:
int GetLineIndentation(int line);
void SetLineIndentation(int line, int indent);
int GetLineIndentPosition(int line);
+ int GetColumn(int position);
void Indent(bool forwards, int lineBottom, int lineTop);
void ConvertLineEnds(int eolModeSet);
void SetReadOnly(bool set) { cb.SetReadOnly(set); }