BeforeCaptionShowEventHandler delegado (sistema de 2007)
Representa o método que manipulará o BeforeCaptionShow evento de um Action.
Namespace: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word.v9.0 (em Microsoft.Office.Tools.Word.v9.0.dll)
Sintaxe
Public Delegate Sub BeforeCaptionShowEventHandler ( _
sender As Object, _
e As ActionEventArgs _
)
Dim instance As New BeforeCaptionShowEventHandler(AddressOf HandlerMethod)
public delegate void BeforeCaptionShowEventHandler(
Object sender,
ActionEventArgs e
)
Parâmetros
- sender
Tipo: System.Object
fonte do evento.
- e
Tipo: Microsoft.Office.Tools.Word.ActionEventArgs
An ActionEventArgs que contém os dados do evento.
Comentários
Quando você cria um BeforeCaptionShowEventHandler delegado, você identifica o método que manipulará o evento. Para associar o evento seu manipulador de eventos, adicione uma instância do delegado ao evento.O manipulador de eventos é chamado sempre que o evento ocorre, a menos que você remova o delegado.Para obter mais informações sobre delegados, consulte Eventos e representantes.
Exemplos
O exemplo de código a seguir cria um marca SMART que reconhece dois termos e oferece uma ação.Em seguida, adiciona manipuladores de eventos para o BeforeCaptionShow e Click eventos. Para testar o código, digite o termo"palavras" e "reconhecer" no documento e, em seguida, tente as ações com marcas inteligentes.
Este exemplo é para uma personalização em nível de documento.
PrivateWithEvents displayAddress As Microsoft.Office.Tools.Word.Action
PrivateSub AddSmartTag()
Dim smartTagDemo AsNew _
Microsoft.Office.Tools.Word.SmartTag( _
"www.microsoft.com/Demo#DemoSmartTag", _
"Demonstration Smart Tag")
' Specify the terms to recognize.
smartTagDemo.Terms.Add("term")
smartTagDemo.Terms.Add("recognize")
' Create the action.
displayAddress = New Microsoft.Office.Tools.Word.Action("To be replaced")
' Add the action to the smart tag.
smartTagDemo.Actions = New Microsoft.Office.Tools.Word.Action() { _
displayAddress}
' Add the smart tag.Me.VstoSmartTags.Add(smartTagDemo)
EndSub
private Microsoft.Office.Tools.Word.Action displayAddress;
privatevoid AddSmartTag()
{
Microsoft.Office.Tools.Word.SmartTag smartTagDemo =
new Microsoft.Office.Tools.Word.SmartTag(
"www.microsoft.com/Demo#DemoSmartTag",
"Demonstration Smart Tag");
// Specify the terms to recognize.
smartTagDemo.Terms.Add("term");
smartTagDemo.Terms.Add("recognize");
// Create the action.
displayAddress = new Microsoft.Office.Tools.Word.Action("To be replaced");
// Add the action to the smart tag.
smartTagDemo.Actions = new Microsoft.Office.Tools.Word.Action[] {
displayAddress };
// Add the smart tag.this.VstoSmartTags.Add(smartTagDemo);
displayAddress.BeforeCaptionShow += new
Microsoft.Office.Tools.Word.BeforeCaptionShowEventHandler(
displayAddress_BeforeCaptionShow);
displayAddress.Click += new
Microsoft.Office.Tools.Word.ActionClickEventHandler(
displayAddress_Click);
}