RibbonUIEventHandler 委托
表示将要处理 OfficeRibbon 的 Load 事件的方法。
命名空间: Microsoft.Office.Tools.Ribbon
程序集: Microsoft.Office.Tools.Common(在 Microsoft.Office.Tools.Common.dll 中)
Microsoft.Office.Tools.Common.v4.0.Utilities(在 Microsoft.Office.Tools.Common.v4.0.Utilities.dll 中)
语法
声明
Public Delegate Sub RibbonUIEventHandler ( _
sender As Object, _
e As RibbonUIEventArgs _
)
public delegate void RibbonUIEventHandler(
Object sender,
RibbonUIEventArgs e
)
参数
- sender
类型:System.Object
事件源。
- e
类型:Microsoft.Office.Tools.Ribbon.RibbonUIEventArgs
事件的数据。
备注
当创建 RibbonUIEventHandler 委托时,将标识处理事件的方法。 若要使该事件与事件处理程序相关联,请将该委托的一个实例添加到事件中。 除非移除了该委托,否则每当发生该事件时就调用事件处理程序。 有关事件处理程序委托的更多信息,请参见 事件和委托。