Example #1
0
        // Event that is emitted at the start of the print process.
        public override void OnStartPrint
            (PrintDocument document, PrintEventArgs e)
        {
            IToolkitPrintSession session = GetSession(document);

            session.StartPrint(e);
        }
Example #2
0
 // Event that is emitted at the start of the print process.
 public override void OnStartPrint
     (PrintDocument document, PrintEventArgs e)
 {
     session.Document = document;
     session.StartPrint(e);
 }