Propriedade XmlMappedRange.SmartTags

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

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

Sintaxe

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

Valor de propriedade

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

Exemplos

O seguinte exemplo de código usa a SmartTags propriedade para exibir o número de marcas inteligentes de um XmlMappedRange. Este exemplo de código pressupõe que a planilha atual contém um 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