コード例 #1
0
 protected virtual void NotifyShutdown()
 {
     Tracer.WriteTraceMethodLine();
     RibbonEventHandler.OnShutdown(this, new EventArgs());
     Dispose();
 }
コード例 #2
0
 public virtual void NotifyShowForm(Office.IRibbonControl control)
 {
     RibbonEventHandler.OnShowForm(this, new RibbonEventArgs(control));
 }
コード例 #3
0
 protected virtual void NotifyStartup()
 {
     Tracer.WriteTraceMethodLine();
     RibbonEventHandler.OnStartup(this, new EventArgs());
 }
コード例 #4
0
 public virtual void NotifyCheckBoxAction(Office.IRibbonControl control,
                                          bool pressed)
 {
     RibbonEventHandler.OnCheckBoxClick
         (this, new RibbonEventArgs(control, pressed));
 }
コード例 #5
0
 public void NotifyRibbonLoad(Office.IRibbonUI ribbonUI)
 {
     Tracer.WriteTraceMethodLine();
     RibbonEventHandler.OnRibbonLoad(ribbonUI);
 }
コード例 #6
0
 public virtual void NotifyButtonAction(Office.IRibbonControl control)
 {
     RibbonEventHandler.OnButtonClick(this, new RibbonEventArgs(control));
 }
コード例 #7
0
 public object LoadImage(string image) =>
 new ReadOnlyIStreamWrapper(RibbonEventHandler.OnLoadImage(image));
コード例 #8
0
 public bool GetToggleButtonPressed(Office.IRibbonControl control)
 {
     return(RibbonEventHandler.OnToggleButtonGetPressed(control));
 }
コード例 #9
0
 public string GetSupertip(Office.IRibbonControl control)
 {
     return(RibbonEventHandler.OnSupertip(control));
 }
コード例 #10
0
 public bool GetCheckBoxPressed(Office.IRibbonControl control)
 {
     return(RibbonEventHandler.OnCheckBoxGetPressed(control));
 }