diff options
author | nyamatongwe <unknown> | 2000-07-01 13:59:22 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-07-01 13:59:22 +0000 |
commit | 166850362916e67a5fe9809690c52490d02b1660 (patch) | |
tree | b30c54d71430f41b9f4026fb5c5f37617e4f60a7 /doc/ScintillaDoc.html | |
parent | fb394f628cb2c6be987c7fe45f9c5b22fb8167fe (diff) | |
download | scintilla-mirror-166850362916e67a5fe9809690c52490d02b1660.tar.gz |
Added print magnification and print light invert.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 9aaa71d14..6c652e614 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -748,11 +748,21 @@ SCI_STOPRECORD </h3> <pre> EM_FORMATRANGE +SCI_SETPRINTMAGNIFICATION(int magnification) +SCI_GETPRINTMAGNIFICATION +SCI_SETPRINTINVERTLIGHT(bool invert) +SCI_GETPRINTINVERTLIGHT </pre> <p> On Windows EM_FORMATRANGE can be used to draw the text onto a display context which can include a printer display context. </p> + <p> + To print at a different size than drawing on screen use SCI_SETPRINTMAGNIFICATION with + a value which is the number of points to add to each style. -3 or -4 gives reasonable small print. + If a black background is used on the screen then it is best to invert the light value of all colours + with SCI_SETPRINTINVERTLIGHT when printing to give a white bavkground. + </p> <h3> Multiple Views </h3> |