Delegado RibbonUIEventHandler
Representa o método que manipulará o Load o evento de um OfficeRibbon.
Namespace: Microsoft.Office.Tools.Ribbon
Assembly: Microsoft.Office.Tools.Common (em Microsoft.Office.Tools.Common.dll)
Sintaxe
'Declaração
Public Delegate Sub RibbonUIEventHandler ( _
sender As Object, _
e As RibbonUIEventArgs _
)
public delegate void RibbonUIEventHandler(
Object sender,
RibbonUIEventArgs e
)
Parâmetros
- sender
Tipo: System.Object
A origem do evento.
- e
Tipo: Microsoft.Office.Tools.Ribbon.RibbonUIEventArgs
Os dados para o evento.
Comentários
Quando você cria um RibbonUIEventHandler representante, você identificar o método que manipulará o evento. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. Para obter mais informações sobre os delegados de manipulador de eventos, consulte Eventos e representantes.