مشاركة عبر


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.Interop.SmartTag.ISmartTagPropertiesواجهة هو المتوفر في Microsoft المكتب 2010 Suite الذكي علامة تطوير مجموعة برامج (SDK). ولاستخدام هذه الواجهة في تعليمات برمجية الخاصة بك، قم بإضافة مرجع إلى Microsoft.المكتب.Interop.SmartTag من علامة تبويب .NET إضافة مرجع الخاصة صندوق حوار.

أمثلة

يوضح مثال التعليمة البرمجية التالية معالج ل Clickحدث. يستخدم معالج الأحداث Propertiesالخاصية إلى الحصول على القيمة خاصية من مجموعة keyed خصائص علامة ذكى. Th هو المثال رمز هو جزءا من بقعة صغيرة مثال عن توفيرها ل SmartTagالواجهة. يفترض هذا المثال أن قيامك بإضافة مرجع إلى من Microsoft.المكتب.Interop.SmartTag من علامة تبويب .NET من صندوق الحوار تمت الإضافة مرجع.

Th هو المثال هو لتخصيص المستوى مستند.

' 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.

راجع أيضًَا

المرجع

ActionEventArgs واجهة

ActionEventArgs الأعضاء

Microsoft.Office.Tools.Word مساحة الاسم