Delegado ContentControlContentUpdatingEventHandler
Representa o método que manipulará o ContentUpdating 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 ContentControlContentUpdatingEventHandler ( _
sender As Object, _
e As ContentControlContentUpdatingEventArgs _
)
public delegate void ContentControlContentUpdatingEventHandler(
Object sender,
ContentControlContentUpdatingEventArgs e
)
Parâmetros
- sender
Tipo: System.Object
A origem do evento.
- e
Tipo: Microsoft.Office.Tools.Word.ContentControlContentUpdatingEventArgs
Os dados para o evento.
Comentários
Quando você cria um ContentControlContentUpdatingEventHandler 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.
Exemplos
Para obter um exemplo de código demonstra como criar um ContentControlContentUpdatingEventHandler delegar, consulte o ContentUpdating de evento.