Delegado ContentControlEnteringEventHandler
Representa o método que manipulará o ControlEntering() o evento de um ContentControlBase.
Namespace: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word (em Microsoft.Office.Tools.Word.dll)
Sintaxe
'Declaração
Public Delegate Sub ContentControlEnteringEventHandler ( _
sender As Object, _
e As ContentControlEnteringEventArgs _
)
public delegate void ContentControlEnteringEventHandler(
Object sender,
ContentControlEnteringEventArgs e
)
Parâmetros
- sender
Tipo: System.Object
A origem do evento.
- e
Tipo: Microsoft.Office.Tools.Word.ContentControlEnteringEventArgs
Os dados para o evento.
Comentários
Quando você cria um ContentControlEnteringEventHandler 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.