diff options
| author | nyamatongwe <devnull@localhost> | 2000-07-05 04:49:03 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2000-07-05 04:49:03 +0000 | 
| commit | 63654a7adf0e2960f63d2e20ccf3900d274fa410 (patch) | |
| tree | dbaabe79f4af1f9fef1b514ed64466165560a098 /doc/ScintillaDoc.html | |
| parent | db04c9f43e663e771b0eeeca0cae3b8924afb35e (diff) | |
| download | scintilla-mirror-63654a7adf0e2960f63d2e20ccf3900d274fa410.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 | 
