共用方式為


ApplicationFactory.CreateAction 方法

建立 Action 物件,這個物件表示智慧標籤的動作。 這個型別或成員僅適用於 2007 Microsoft Office system 專案。智慧標籤在 Office 2010 中已被取代。
.

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

語法

'宣告
Function CreateAction ( _
    caption As String _
) As Action
Action CreateAction(
    string caption
)

參數

  • caption
    型別:System.String
    顯示於智慧標籤功能表上的動作名稱。

傳回值

型別:Microsoft.Office.Tools.Word.Action
新的智慧標籤動作。

範例

下列程式碼範例示範如何在 Word 增益集專案中建立智慧標籤和動作。 若要使用這個範例,請從 ThisAddIn 類別中執行程式碼。

Dim simpleSmartTag As Microsoft.Office.Tools.Word.SmartTag =
    Globals.Factory.CreateSmartTag(
        "www.microsoft.com/Demo#DemoSmartTag",
        "Test Smart Tag")
Dim simpleAction As Microsoft.Office.Tools.Word.Action =
    Globals.Factory.CreateAction("Test Action")

simpleSmartTag.Terms.Add("blue")
simpleSmartTag.Actions = New Microsoft.Office.Tools.Word.Action() { _
    simpleAction}
Me.VstoSmartTags.Add(simpleSmartTag)
Microsoft.Office.Tools.Word.SmartTag simpleSmartTag =
    Globals.Factory.CreateSmartTag(
    "www.microsoft.com/Demo#DemoSmartTag",
    "Test Smart Tag");
Microsoft.Office.Tools.Word.Action simpleAction =
    Globals.Factory.CreateAction("Test Action");

simpleSmartTag.Terms.Add("blue");
simpleSmartTag.Actions = new Microsoft.Office.Tools.Word.Action[] { 
    simpleAction };
this.VstoSmartTags.Add(simpleSmartTag);

.NET Framework 安全性

請參閱

參考

ApplicationFactory 介面

Microsoft.Office.Tools.Word 命名空間