aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-07-01 13:59:22 +0000
committernyamatongwe <unknown>2000-07-01 13:59:22 +0000
commit166850362916e67a5fe9809690c52490d02b1660 (patch)
treeb30c54d71430f41b9f4026fb5c5f37617e4f60a7 /include
parentfb394f628cb2c6be987c7fe45f9c5b22fb8167fe (diff)
downloadscintilla-mirror-166850362916e67a5fe9809690c52490d02b1660.tar.gz
Added print magnification and print light invert.
Diffstat (limited to 'include')
-rw-r--r--include/Scintilla.iface13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 5c589390c..28c60f13d 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -496,6 +496,19 @@ set void SetSelectionEnd=2144(position pos,)
# Returns the position at the end of the selection.
get position GetSelectionEnd=2145(,)
+# Sets the print magnification added to the point size of each style for printing.
+set void SetPrintMagnification=2146(int magnification,)
+
+# Returns the print magnification.
+get int GetPrintMagnification=2147(,)
+
+# Set to invert the light value of each style for printing.
+# Used to produce reasonable print output when black background used.
+set void SetPrintInvertLight=2148(bool invert,)
+
+# Returns the invert light value property.
+get bool GetPrintInvertLight=2149(,)
+
# Show a call tip containing a definition near position pos.
fun void CallTipShow=2200(position pos, string definition)