Propriedade XmlMappedRange.SmartTags

Obtém um objeto de Microsoft.Office.Interop.Excel.SmartTags que representa o identificador para o controle de XmlMappedRange .

Namespace:  Microsoft.Office.Tools.Excel
Assembly:  Microsoft.Office.Tools.Excel (em Microsoft.Office.Tools.Excel.dll)

Sintaxe

'Declaração
ReadOnly Property SmartTags As SmartTags
SmartTags SmartTags { get; }

Valor de propriedade

Tipo: Microsoft.Office.Interop.Excel.SmartTags
Um objeto de Microsoft.Office.Interop.Excel.SmartTags que representa o identificador para o controle de XmlMappedRange .

Exemplos

O exemplo de código a seguir usa a propriedade de SmartTags para exibir o número de marcas inteligentes de XmlMappedRange.Este exemplo de código a seguir pressupõe que a planilha atual contiver XmlMappedRange chamado CustomerLastNameCell.

Private Sub DisplaySmartTagsCount()
    MsgBox("The XmlMappedRange has " & _
        Me.CustomerLastNameCell.SmartTags.Count & " smart tags.")
End Sub
private void DisplaySmartTagsCount()
{
    MessageBox.Show("The XmlMappedRange has " +
        this.CustomerLastNameCell.SmartTags.Count + " smart tags.");
}

Segurança do .NET Framework

Consulte também

Referência

XmlMappedRange Interface

Namespace Microsoft.Office.Tools.Excel