diff options
author | nyamatongwe <unknown> | 2000-07-05 04:49:03 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-07-05 04:49:03 +0000 |
commit | abe70b07bd9bec5d94ffc5ce72c5ee7613981ac8 (patch) | |
tree | dbaabe79f4af1f9fef1b514ed64466165560a098 /doc/ScintillaDoc.html | |
parent | a21ce1bbb8c3f6e1330a451ca7e0d9ba7ce628db (diff) | |
download | scintilla-mirror-abe70b07bd9bec5d94ffc5ce72c5ee7613981ac8.tar.gz |
Changed print colour mode to have black on white as well as invert light
states.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 6c652e614..456875111 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -750,8 +750,8 @@ SCI_STOPRECORD EM_FORMATRANGE SCI_SETPRINTMAGNIFICATION(int magnification) SCI_GETPRINTMAGNIFICATION -SCI_SETPRINTINVERTLIGHT(bool invert) -SCI_GETPRINTINVERTLIGHT +SCI_SETPRINTCOLOURMODE(int mode) +SCI_GETPRINTCOLOURMODE </pre> <p> On Windows EM_FORMATRANGE can be used to draw the text onto a display context which can @@ -760,8 +760,12 @@ SCI_GETPRINTINVERTLIGHT <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. + </p> + <p> 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. + with SCI_SETPRINTCOLOURMODE(SC_PRINT_INVERTLIGHT) when printing to give a + white background. If intermediate tones are used on screen then black on white print can be + chosen with SCI_SETPRINTCOLOURMODE(SC_PRINT_BLACKONWHITE). </p> <h3> Multiple Views |