Compartir a través de


XmlMappedRange.SmartTags (Propiedad)

Obtiene un objeto Microsoft.Office.Interop.Excel.SmartTags que representa el identificador del control XmlMappedRange.

Espacio de nombres:  Microsoft.Office.Tools.Excel
Ensamblado:  Microsoft.Office.Tools.Excel (en Microsoft.Office.Tools.Excel.dll)

Sintaxis

'Declaración
ReadOnly Property SmartTags As SmartTags
SmartTags SmartTags { get; }

Valor de propiedad

Tipo: Microsoft.Office.Interop.Excel.SmartTags
Objeto Microsoft.Office.Interop.Excel.SmartTags que representa el identificador del control XmlMappedRange.

Ejemplos

En el siguiente ejemplo de código se utiliza la propiedad SmartTags para mostrar el número de etiquetas inteligentes de un control XmlMappedRange.En este ejemplo de código se supone que la hoja de cálculo actual contiene un control XmlMappedRange denominado 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.");
}

Seguridad de .NET Framework

Vea también

Referencia

XmlMappedRange Interfaz

Microsoft.Office.Tools.Excel (Espacio de nombres)