SintillaNetPrinting

December 22, 2021 ยท View on GitHub

Add print functionallity to ScintillaNet 3.x https://github.com/jacobslusser/ScintillaNET

Nuget

To Use it:

Include ScintillaNetPrinting folder in your porject along with ScintillaNet 3.x and reference it:

ScintillaNetPrinting.Printing printer = new ScintillaNetPrinting.Printing(ScintillaNet);

printer.PageSettings = new ScintillaNetPrinting.PageSettings() { ColorMode = ScintillaNePrinting.PageSettings.PrintColorMode.BlackOnWhite };

printer.Print();

or

printer.PrintPreview();

This is a copy and adaptation of original printing functionallity of ScintillaNet 2.6 version.

The .NET package

The package ending with .NET is depended upon the new Scintilla 5 series Scintilla.NET and is in active development. The other package's Scintilla dependency is no longer being maintained even though the codebase of the dependent software may be maintained.

Thanks to

  • JetBrains for their open source license(s).
  • .NET Desktop

JetBrains