Inheritance: System.EventArgs
コード例 #1
0
 void HTMLDocumentEvents2.onreadystatechange(IHTMLEventObj pEvtObj)
 {
     if (doconreadystatechange != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         doconreadystatechange(this, arg);
     }
 }
コード例 #2
0
 void HTMLDocumentEvents2.onrowsinserted(IHTMLEventObj pEvtObj)
 {
     if (doconrowsinserted != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         doconrowsinserted(this, arg);
     }
 }
コード例 #3
0
 void HTMLDocumentEvents2.onrowenter(IHTMLEventObj pEvtObj)
 {
     if (doconrowenter != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         doconrowenter(this, arg);
     }
 }
コード例 #4
0
 void HTMLDocumentEvents2.ondataavailable(IHTMLEventObj pEvtObj)
 {
     if (docondataavialable != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         docondataavialable(this, arg);
     }
 }
コード例 #5
0
 void HTMLDocumentEvents2.ondatasetchanged(IHTMLEventObj pEvtObj)
 {
     if (docondatasetchanged != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         docondatasetchanged(this, arg);
     }
 }
コード例 #6
0
 void HTMLDocumentEvents2.onbeforeeditfocus(IHTMLEventObj pEvtObj)
 {
     if (doconbeforeeditfocus != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         doconbeforeeditfocus(this, arg);
     }
 }
コード例 #7
0
 void HTMLDocumentEvents2.ondatasetcomplete(IHTMLEventObj pEvtObj)
 {
     if (docondatasetcomplete != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         docondatasetcomplete(this, arg);
     }
 }
コード例 #8
0
 void HTMLDocumentEvents2.onselectionchange(IHTMLEventObj pEvtObj)
 {
     if (doconselectionchange != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         doconselectionchange(this, arg);
     }
 }
コード例 #9
0
 void HTMLDocumentEvents2.onfocusout(IHTMLEventObj pEvtObj)
 {
     if (doconfocusout != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         doconfocusout(this, arg);
     }
 }
コード例 #10
0
 void HTMLDocumentEvents2.ondeactivate(IHTMLEventObj pEvtObj)
 {
     if (docondeactivate != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         docondeactivate(this, arg);
     }
 }
コード例 #11
0
 void HTMLDocumentEvents2.onmouseup(IHTMLEventObj pEvtObj)
 {
     if (doconmouseup != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         doconmouseup(this, arg);
     }
 }
コード例 #12
0
 void HTMLDocumentEvents2.onkeydown(IHTMLEventObj pEvtObj)
 {
     if (doconkeydown != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         doconkeydown(this, arg);
     }
 }
コード例 #13
0
 bool HTMLDocumentEvents2.onhelp(IHTMLEventObj pEvtObj)
 {
     if (doconhelp != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         doconhelp(this, arg);
         return arg.AllowDefault;
     }
     else
         return true; //Allow, default
 }
コード例 #14
0
 bool HTMLDocumentEvents2.onhelp(IHTMLEventObj pEvtObj)
 {
     if (doconhelp != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         doconhelp(this, arg);
         return(arg.AllowDefault);
     }
     else
     {
         return(true); //Allow, default
     }
 }
コード例 #15
0
 void HTMLDocumentEvents2.onkeydown(IHTMLEventObj pEvtObj)
 {
     if (doconkeydown != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         doconkeydown(this, arg);
     }
 }
コード例 #16
0
 void HTMLDocumentEvents2.onrowenter(IHTMLEventObj pEvtObj)
 {
     if (doconrowenter != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         doconrowenter(this, arg);
     }
 }
コード例 #17
0
 void HTMLDocumentEvents2.onreadystatechange(IHTMLEventObj pEvtObj)
 {
     if (doconreadystatechange != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         doconreadystatechange(this, arg);
     }
 }
コード例 #18
0
 void HTMLDocumentEvents2.ondatasetchanged(IHTMLEventObj pEvtObj)
 {
     if (docondatasetchanged != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         docondatasetchanged(this, arg);
     }
 }
コード例 #19
0
 void HTMLDocumentEvents2.onrowsinserted(IHTMLEventObj pEvtObj)
 {
     if (doconrowsinserted != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         doconrowsinserted(this, arg);
     }
 }
コード例 #20
0
 void HTMLDocumentEvents2.ondatasetcomplete(IHTMLEventObj pEvtObj)
 {
     if (docondatasetcomplete != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         docondatasetcomplete(this, arg);
     }
 }
コード例 #21
0
 void HTMLDocumentEvents2.ondataavailable(IHTMLEventObj pEvtObj)
 {
     if (docondataavialable != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         docondataavialable(this, arg);
     }
 }
コード例 #22
0
 void HTMLDocumentEvents2.onbeforeeditfocus(IHTMLEventObj pEvtObj)
 {
     if (doconbeforeeditfocus != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         doconbeforeeditfocus(this, arg);
     }
 }
コード例 #23
0
 void HTMLDocumentEvents2.onselectionchange(IHTMLEventObj pEvtObj)
 {
     if (doconselectionchange != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         doconselectionchange(this, arg);
     }
 }
コード例 #24
0
 void HTMLDocumentEvents2.onfocusout(IHTMLEventObj pEvtObj)
 {
     if (doconfocusout != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         doconfocusout(this, arg);
     }
 }
コード例 #25
0
 void HTMLDocumentEvents2.ondeactivate(IHTMLEventObj pEvtObj)
 {
     if (docondeactivate != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         docondeactivate(this, arg);
     }
 }
コード例 #26
0
 void HTMLDocumentEvents2.onmouseup(IHTMLEventObj pEvtObj)
 {
     if (doconmouseup != null)
     {
         HTMLDocumentEventArgs arg = new HTMLDocumentEventArgs(pEvtObj);
         doconmouseup(this, arg);
     }
 }