共用方式為


XmlMappedRange.SmartTags 屬性

取得 Microsoft.Office.Interop.Excel.SmartTags 物件,表示 XmlMappedRange 控制項的識別項。

命名空間:  Microsoft.Office.Tools.Excel
組件:  Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)

語法

'宣告
ReadOnly Property SmartTags As SmartTags
SmartTags SmartTags { get; }

屬性值

型別:Microsoft.Office.Interop.Excel.SmartTags
Microsoft.Office.Interop.Excel.SmartTags 物件,表示 XmlMappedRange 控制項的識別項。

範例

下列程式碼範例使用 SmartTags 屬性來顯示 XmlMappedRange 中的智慧標籤數。這個程式碼範例假設目前工作表包含名為 CustomerLastNameCell 的 XmlMappedRange

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.");
}

.NET Framework 安全性

請參閱

參考

XmlMappedRange 介面

Microsoft.Office.Tools.Excel 命名空間