共用方式為


WorkbookBase.SmartTagOptions 屬性

取得 Microsoft.Office.Interop.Excel.SmartTagOptions 物件,表示可用智慧標籤執行的選項。

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

語法

'宣告
Public ReadOnly Property SmartTagOptions As SmartTagOptions
    Get
public SmartTagOptions SmartTagOptions { get; }

屬性值

型別:Microsoft.Office.Interop.Excel.SmartTagOptions
Microsoft.Office.Interop.Excel.SmartTagOptions 物件,表示可用智慧標籤執行的選項。

範例

下列程式碼範例使用 SmartTagOptions 屬性,將智慧標籤內嵌至目前活頁簿中,並顯示智慧標籤的指示區和按鈕。

這是示範文件層級自訂的範例。

Private Sub WorkbookSmartTagOptions()
    Me.SmartTagOptions.DisplaySmartTags = _
        Excel.XlSmartTagDisplayMode.xlIndicatorAndButton
    Me.SmartTagOptions.EmbedSmartTags = True
End Sub
private void WorkbookSmartTagOptions()
{
    this.SmartTagOptions.DisplaySmartTags =
        Excel.XlSmartTagDisplayMode.xlIndicatorAndButton;
    this.SmartTagOptions.EmbedSmartTags = true;
}

.NET Framework 安全性

請參閱

參考

WorkbookBase 類別

Microsoft.Office.Tools.Excel 命名空間