Condividi tramite


Proprietà ActionEventArgs.Properties

Ottiene tutte le proprietà che sono state implementate per lo smart tag.

Spazio dei nomi:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word (in Microsoft.Office.Tools.Word.dll)

Sintassi

'Dichiarazione
ReadOnly Property Properties As ISmartTagProperties
    Get
ISmartTagProperties Properties { get; }

Valore proprietà

Tipo: Microsoft.Office.Interop.SmartTag.ISmartTagProperties
Oggetto Microsoft.Office.Interop.SmartTag.ISmartTagProperties contenente tutte le proprietà implementate per lo smart tag.

Note

L'interfaccia Microsoft.Office.Interop.SmartTag.ISmartTagProperties viene fornita in Microsoft Office 2003 Smart Tag Software Development Kit (SDK). Per utilizzare questa interfaccia nel codice, aggiungere un riferimento a Microsoft.Office.Interop.SmartTag dalla scheda .NET della finestra di dialogo Aggiungi riferimento.

Esempi

Nell'esempio di codice riportato di seguito viene illustrato un gestore per l'evento Click. Il gestore eventi utilizza la proprietà Properties per ottenere un valore di proprietà dall'insieme codificato di proprietà smart tag. Questo esempio di codice fa parte di un esempio più esaustivo fornito per l'interfaccia SmartTag. Nell'esempio si presuppone che sia stato aggiunto un riferimento a Microsoft.Office.Interop.SmartTag dalla scheda .NET della finestra di dialogo Aggiungi riferimento.

Questo esempio è valido per una personalizzazione a livello di documento.

' 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 the property value for the term.
private void Action1_Click(object sender, 
    Microsoft.Office.Tools.Word.ActionEventArgs e)
{
    ISmartTagProperties propertyBag = e.Properties;
    string key = "Key1";
    MessageBox.Show("The corresponding value of " + key + 
        " is: " + propertyBag.get_Read(key));
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

ActionEventArgs Interfaccia

Spazio dei nomi Microsoft.Office.Tools.Word