Proprietà DocumentBase.SmartTags
Ottiene un oggetto SmartTags che rappresenta uno smart tag in un documento.
Spazio dei nomi: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word.v4.0.Utilities (in Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
Sintassi
'Dichiarazione
Public ReadOnly Property SmartTags As SmartTags
Get
public SmartTags SmartTags { get; }
Valore proprietà
Tipo: Microsoft.Office.Interop.Word.SmartTags
Oggetto SmartTags che rappresenta uno smart tag in un documento.
Esempi
Nell'esempio di codice riportato di seguito viene illustrato come aggiungere proprietà al primo smart tag nel documento. In questo esempio si presuppone che nel documento esista uno smart tag. Per utilizzare questo esempio, eseguirlo dalla classe ThisDocument in un progetto a livello di documento.
Private Sub DocumentSmartTags()
Dim index As Object = 1
If Me.SmartTags.Count >= 1 Then
Me.SmartTags.Item(index).Properties.Add("President", "true")
End If
End Sub
private void DocumentSmartTags()
{
object index = 1;
if (this.SmartTags.Count >= 1)
{
this.SmartTags.get_Item(ref index)
.Properties.Add("President", "true");
}
}
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.