public virtual void ClientToHostWindow(ref int cX, ref int cY)
 {
     DWebBrowserEvents2_ClientToHostWindowEvent clienttohostwindowEvent = new DWebBrowserEvents2_ClientToHostWindowEvent(cX, cY);
     this.parent.RaiseOnClientToHostWindow(this.parent, clienttohostwindowEvent);
     cX = clienttohostwindowEvent.cX;
     cY = clienttohostwindowEvent.cY;
 }
 internal void RaiseOnClientToHostWindow(object sender, DWebBrowserEvents2_ClientToHostWindowEvent e)
 {
     if ((this.ClientToHostWindow != null))
     {
         this.ClientToHostWindow(sender, e);
     }
 }