internal void RaiseOnPrintTemplateInstantiation(object sender, DWebBrowserEvents2_PrintTemplateInstantiationEvent e)
 {
     if ((this.PrintTemplateInstantiation != null))
     {
         this.PrintTemplateInstantiation(sender, e);
     }
 }
 public virtual void PrintTemplateInstantiation(object pDisp)
 {
     DWebBrowserEvents2_PrintTemplateInstantiationEvent printtemplateinstantiationEvent = new DWebBrowserEvents2_PrintTemplateInstantiationEvent(pDisp);
     this.parent.RaiseOnPrintTemplateInstantiation(this.parent, printtemplateinstantiationEvent);
 }