Como: Criar marcas inteligentes com reconhecedores de personalizadas no Excel e.NET Framework 3.5
No Excel projetos destinados a.NET Framework 3.5, você pode controlar como o Excel reconhece as marcas inteligentes em documentos, derivando da Microsoft.Office.Tools.Excel.SmartTag classe e substituindo o Recognize método.
Para executar uma marca inteligente, os usuários finais devem ter marcas inteligentes ativadas. For more information, see Como: Ativar marcas inteligentes no Word e Excel.
Aplicável a: As informações neste tópico se aplicam a projetos de nível de documento e projetos de nível de aplicativo para Excel 2007. Para obter mais informações, consulte Recursos disponíveis pelo aplicativo do Office e o tipo de projeto.
Para adicionar uma marca inteligente com um reconhecedor personalizado para uma pasta de trabalho do Excel
Crie um novo projeto de nível de documento ou no nível do aplicativo para o Excel 2007. For more information, see Como: Criar projetos do Office em Visual Studio.
Adicione uma referência ao assembly Microsoft.Office.Interop.SmartTag (versão 12.0.0.0) (em inglês) da .NET guia de Add Reference caixa de diálogo.
Adicionar um arquivo de classe ao projeto e criar uma classe que herda de Microsoft.Office.Tools.Excel.SmartTag.
Na nova classe, crie as ações para as marcas inteligentes. As ações são itens que aparecem no menu de marcas inteligentes. Criar ações adicionando instâncias de Action tipo à sua classe Actions coleção.
Substituir o SmartTagBase.Recognize método para implementar seu próprio comportamento reconhecendo personalizado.
A substituição da Recognize deve chamar o método de Microsoft.Office.Tools.Excel.SmartTag.PersistTag método para tornar o Excel reconhece a marca inteligente.
Criar manipuladores de eventos para responder ao Click evento e opcionalmente a BeforeCaptionShow o evento, as ações que você criou.
No arquivo de código para a pasta de trabalho do projeto, adicione a instância de marca inteligente para o VstoSmartTags propriedade da ThisWorkbook classe (para um projeto de nível de documento) ou o VstoSmartTags propriedade da ThisAddIn classe (para um projeto de nível de aplicativo).
Exemplo
O exemplo de código a seguir mostra como criar uma marca inteligente personalizada em uma pasta de trabalho do Excel. O exemplo substitui o Recognize método para reconhecer os termos sales e organization. O Recognize método adiciona um par de chave e valor para a coleção de propriedades com chave para a marca inteligente. O método chama o PersistTag método para reconhecer a marca inteligente e salvar a nova propriedade de marca inteligente.
Para testar o exemplo, digite as palavras vendas e organização em células diferentes de trabalho e em seguida, tente as ações de marca inteligente. Uma ação exibe o valor da propriedade correspondente para o termo reconhecido e a outra ação exibe o namespace de marca inteligente e a legenda.
Imports Microsoft.Office.Tools.Excel
Imports Microsoft.Office.Interop.SmartTag
Public Class CustomSmartTag
Inherits SmartTag
' Declare Actions for this SmartTag
WithEvents Action1 As New Action("Display property value")
WithEvents Action2 As New Action("Display smart tag details")
Public Sub New()
MyBase.New("https://www.contoso.com/Demo#DemoSmartTag", _
"Custom Smart Tag")
Me.Terms.AddRange(New String() {"sales", "organization"})
Actions = New Action() {Action1, Action2}
End Sub
Protected Overrides Sub Recognize(ByVal text As String, _
ByVal site As ISmartTagRecognizerSite, _
ByVal tokenList As ISmartTagTokenList)
' Determine whether each smart tag term exists in
' the document text.
Dim Term As String
For Each Term In Me.Terms
' Search the cell text for the first instance of
' the current smart tag term.
Dim index As Integer = Me.CellText.IndexOf(Term, 0)
If (index >= 0) Then
' Create a smart tag token and a property bag for the
' recognized term.
Dim propertyBag As ISmartTagProperties = _
site.GetNewPropertyBag()
' Write a new property value.
Dim key As String = "Key1"
propertyBag.Write(key, DateTime.Now)
' Attach the smart tag to the term in the document
Me.PersistTag(propertyBag)
' This implementation only finds the first instance
' of a smart tag term in the cell.
Exit For
End If
Next
End Sub
' This action displays the property value for the term.
Private Sub Action1_Click(ByVal sender As Object, _
ByVal e As ActionEventArgs) Handles Action1.Click
Dim propertyBag As ISmartTagProperties = e.Properties
Dim key As String = "Key1"
MsgBox("The corresponding value of " & _
key & " is: " & propertyBag.Read(key))
End Sub
' This action displays smart tag details.
Private Sub Action2_Click(ByVal sender As Object, _
ByVal e As ActionEventArgs) Handles Action2.Click
MsgBox("The current smart tag caption is '" & _
Me.Caption & "'. The current smart tag type is '" & _
Me.SmartTagType & "'.")
End Sub
End Class
using System;
using System.Windows.Forms;
using Microsoft.Office.Tools.Excel;
using Microsoft.Office.Interop.SmartTag;
public class CustomSmartTag : SmartTag {
// Declare Actions for this SmartTag
Microsoft.Office.Tools.Excel.Action Action1 =
new Microsoft.Office.Tools.Excel.Action("Display property value");
Microsoft.Office.Tools.Excel.Action Action2 =
new Microsoft.Office.Tools.Excel.Action("Display smart tag details");
public CustomSmartTag() : base(
"https://www.contoso.com/Demo#DemoSmartTag",
"Custom Smart Tag")
{
this.Terms.AddRange(new string[] {
"sales", "organization" });
Actions = new Microsoft.Office.Tools.Excel.Action[] { Action1, Action2 };
Action1.Click +=
new ActionClickEventHandler(Action1_Click);
Action2.Click +=
new ActionClickEventHandler(Action2_Click);
}
protected override void Recognize(string text,
ISmartTagRecognizerSite site, ISmartTagTokenList tokenList)
{
// Determine whether each smart tag term exists in
// the document text.
foreach (string term in this.Terms)
{
// Search the cell text for the first instance of
// the current smart tag term.
int index = this.CellText.IndexOf(term, 0);
if (index >= 0)
{
// Create a smart tag token and a property bag for the
// recognized term.
ISmartTagProperties propertyBag =
site.GetNewPropertyBag();
// Write a new property value.
string key = "Key1";
propertyBag.Write(key, DateTime.Now.ToString());
// Attach the smart tag to the term in the document
this.PersistTag(propertyBag);
// This implementation only finds the first instance
// of a smart tag term in the cell.
break;
}
}
}
// This action displays the property value for the term.
private void Action1_Click(object sender, ActionEventArgs e)
{
ISmartTagProperties propertyBag = e.Properties;
string key = "Key1";
MessageBox.Show("The corresponding value of " + key +
" is: " + propertyBag.get_Read(key));
}
// This action displays smart tag details.
private void Action2_Click(object sender, ActionEventArgs e)
{
MessageBox.Show("The current smart tag caption is '" +
this.Caption + "'. The current smart tag type is '" +
this.SmartTagType + "'.");
}
}
Compilando o código
Adicionar uma referência do projeto Biblioteca de tipos do Microsoft Smart Tags 2.0 da COM guia da Add Reference caixa de diálogo. Certifique-se de que o Copy Local é de propriedade da referência da false. Se for true, a referência não é o assembly de interoperabilidade primário correto e você deve instalar o assembly da mídia de instalação Microsoft Office. For more information, see Como: Instalar Assemblies de interoperabilidade primária do Office.
Coloque o código de exemplo em um novo arquivo de classe chamado CustomSmartTag.
No C#, altere o namespace para coincidir com o nome do projeto.
Adicionar Imports (em Visual Basic) ou using (em C#) instruções para a Microsoft.Office.Tools.Excel e Microsoft.Office.Interop.SmartTag namespaces no topo do arquivo de classe.
Adicione o seguinte código para o ThisWorkbook_Startup ou ThisAddIn_Startup o manipulador de eventos em seu projeto. Este código adiciona a marca inteligente personalizada para a pasta de trabalho.
Me.VstoSmartTags.Add(New CustomSmartTag())
this.VstoSmartTags.Add(new CustomSmartTag());
Segurança
Você deve ativar marcas inteligentes no Excel. Por padrão, eles não estão ativados. For more information, see Como: Ativar marcas inteligentes no Word e Excel.
Consulte também
Tarefas
Como: Ativar marcas inteligentes no Word e Excel
Como: Adicionar marcas inteligentes em documentos do Word
Como: Adicionar marcas inteligentes para pastas de trabalho do Excel
Como: Criar marcas inteligentes com reconhecedores de personalizado no Word e.NET Framework 3.5
Conceitos
Arquitetura de marcas inteligentes