Inheritance: System.EventArgs
 void HTMLWindowEvents2.onunload(IHTMLEventObj pEvtObj)
 {
     if (winunload != null)
     {
         HTMLWindowEventArgs arg = new HTMLWindowEventArgs(pEvtObj);
         winunload(this, arg);
     }
 }
 void HTMLWindowEvents2.onafterprint(IHTMLEventObj pEvtObj)
 {
     if (winonafterprint != null)
     {
         HTMLWindowEventArgs arg = new HTMLWindowEventArgs(pEvtObj);
         winonafterprint(this, arg);
     }
 }
 void HTMLWindowEvents2.onresize(IHTMLEventObj pEvtObj)
 {
     if (winonresize != null)
     {
         HTMLWindowEventArgs arg = new HTMLWindowEventArgs(pEvtObj);
         winonresize(this, arg);
     }
 }
 void HTMLWindowEvents2.onscroll(IHTMLEventObj pEvtObj)
 {
     if (winonscroll != null)
     {
         HTMLWindowEventArgs arg = new HTMLWindowEventArgs(pEvtObj);
         winonscroll(this, arg);
     }
 }
 void HTMLWindowEvents2.onfocus(IHTMLEventObj pEvtObj)
 {
     if (winonfocus != null)
     {
         HTMLWindowEventArgs arg = new HTMLWindowEventArgs(pEvtObj);
         winonfocus(this, arg);
     }
 }