Ejemplo n.º 1
0
 //invoke the UpdateUI event
 public void InvokeUpdateUI(mshtml.IHTMLElement ae)
 {
     if (UpdateUI != null)
     {
         HtmlUpdateUIEventArgs ea = new HtmlUpdateUIEventArgs();
         ea.currentElement = ae;
         UpdateUI(this, ea);
     }
 }
Ejemplo n.º 2
0
 //invoke the UpdateUI event
 public void InvokeUpdateUI(IHTMLElement ae)
 {
     if (UpdateUI != null)
     {
         HtmlUpdateUIEventArgs ea = new HtmlUpdateUIEventArgs();
         ea.currentElement = ae;
         UpdateUI(this, ea);
     }
 }