BrightIdeasSoftware.ListViewPrinterBase.PrintWatermark(System.Drawing.Graphics)

Here are the examples of the csharp api class BrightIdeasSoftware.ListViewPrinterBase.PrintWatermark(System.Drawing.Graphics) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: MapViewer
Source File: ListViewPrinter.cs
protected bool PrintOnePage(PrintPageEventArgs e)
        {
            this.CalculateBounds(e);
            this.CalculatePrintParameters(this.ListView);
            this.PrintHeaderFooter(e.Graphics);
            this.ApplyScaling(e.Graphics);
            bool continuePrinting = this.PrintList(e.Graphics, this.ListView);
            this.PrintWatermark(e.Graphics);
            return continuePrinting;
        }