Ejemplo n.º 1
0
		internal void RaiseOnClientToHostWindow(object sender, DWebBrowserEvents2_ClientToHostWindowEvent e) 
		{
			if ((this.ClientToHostWindow != null)) 
			{
				this.ClientToHostWindow(sender, e);
			}
		}
Ejemplo n.º 2
0
		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;
		}