ActionEventArgs.Properties 屬性
取得已針對智慧標籤實作的所有屬性。
命名空間: Microsoft.Office.Tools.Word
組件: Microsoft.Office.Tools.Word (在 Microsoft.Office.Tools.Word.dll 中)
語法
'宣告
ReadOnly Property Properties As ISmartTagProperties
Get
ISmartTagProperties Properties { get; }
屬性值
型別:Microsoft.Office.Interop.SmartTag.ISmartTagProperties
Microsoft.Office.Interop.SmartTag.ISmartTagProperties 物件,內含所有為智慧型標籤實作的屬性。
備註
Microsoft Office Smart Tag 軟體開發套件 (SDK) 中提供 Microsoft.Office.Interop.SmartTag.ISmartTagProperties 介面。 若要在程式碼中使用這個介面,請從 [加入參考] 對話方塊的 [.NET] 索引標籤,將參考加入至 [Microsoft.Office.Interop.SmartTag]。
範例
下列程式碼範例會示範 Click 事件的處理常式。 事件處理常式會使用 Properties 屬性,從已輸入的智慧標籤屬性集合中取得屬性值。 這個程式碼範例是 SmartTag 介面完整範例的一部分。 本範例假設您已從 [加入參考] 對話方塊的 [.NET] 索引標籤,新增 [Microsoft.Office.Interop.SmartTag] 的參考。
這是示範文件層級自訂的範例。
' This action displays the property value for the term.
Private Sub Action1_Click(ByVal sender As Object, _
ByVal e As ActionEventArgs) Handles Action1.Click
Dim propertyBag As ISmartTagProperties = e.Properties
Dim key As String = "Key1"
MsgBox("The corresponding value of " & _
key & " is: " & propertyBag.Read(key))
End Sub
// This action displays the property value for the term.
private void Action1_Click(object sender,
Microsoft.Office.Tools.Word.ActionEventArgs e)
{
ISmartTagProperties propertyBag = e.Properties;
string key = "Key1";
MessageBox.Show("The corresponding value of " + key +
" is: " + propertyBag.get_Read(key));
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。