مشاركة عبر


ContentControlContentUpdatingEventArgs.Content الخاصية

الحصول أو تعيين نص هو التي تتم كتابتها إلى عنصر تحكم المحتويات من XML المخصص الذي جزء هو مرتبط بعنصر التحكم.

مساحة الاسم:  Microsoft.Office.Tools.Word
التجميع:  Microsoft.Office.Tools.Word (في Microsoft.Office.Tools.Word.dll)

بناء الجملة

'إقرار
Property Content As String
    Get
    Set
string Content { get; set; }

قيمة الخاصية

النوع: System.String
نص الذي هو التي تتم كتابتها إلى عنصر تحكم المحتويات من XML المخصص الذي جزء هو مرتبط بعنصر التحكم.

ملاحظات

يمكنك يربط عناصر تحكم المحتوى إلى عنصر في جزء من XML (يسمى أيضا جزء XML المخصص ) التي هو مضمن في مستند. استخدام Contentالخاصية إلى تغيير نص قبل Microsoft المكتب 2010 Suite الكلمة يقوم بتحديث عنصر تحكم.

للمزيد من المعلومات، راجع عناصر تحكم المحتوى ونظرة عامة على أجزاء XML المخصصة.

أمثلة

يلي تعليمات برمجية يوضح المثال معالجات الأحداث ل ContentUpdatingو StoreUpdatingالأحداث. Th هو بفرض أن مستند يحتوي على PlainTextContentControlباسم plainTextContentControl1التي هو مرتبط بعنصر في part. XML مخصص تعليمات برمجية مثال يوضح كيفية يربط عنصر تحكم محتوى إلى عنصر في جزء XML مخصصة، راجع الإرشادات التفصيلية: ربط عناصر تحكم المحتوى إلى أجزاء XML المخصصة.

لاستخدام هذا تعليمات برمجية، لصقه في ThisDocumentالفئة في مشروع الخاص بك. C#، يجب يرفق حدث معالجات إلى ContentUpdatingو StoreUpdatingحدث s من plainTextContentControl1.

Th هو المثال هو لتخصيص المستوى مستند. يمكنك تعديله لتشغيل تطبيقات ذات المستوى إضافة-في. لمزيد من المعلومات، راجع توسيع المستندات Word و مصنفات Excel في وظائف ذات مستوى التطبيق عند وقت التشغيل.

Private Sub plainTextContentControl1_StoreUpdating(ByVal sender As Object, _
    ByVal e As Microsoft.Office.Tools.Word.ContentControlStoreUpdatingEventArgs) _
    Handles PlainTextContentControl1.StoreUpdating

    MessageBox.Show("The control was changed to the following value: " & vbCrLf & _
        e.Content & vbCrLf & "This value is about to be written to the node that is bound to this control.")
End Sub

Private Sub plainTextContentControl1_ContentUpdating(ByVal sender As Object, _
    ByVal e As Microsoft.Office.Tools.Word.ContentControlContentUpdatingEventArgs) _
    Handles PlainTextContentControl1.ContentUpdating

    MessageBox.Show("The node that is bound to this control was changed to the following value: " & vbCrLf & _
        e.Content & vbCrLf & "This value is about to be written to this control.")
End Sub
void plainTextContentControl1_StoreUpdating(object sender, 
    Microsoft.Office.Tools.Word.ContentControlStoreUpdatingEventArgs e)
{
    MessageBox.Show("The control was changed to the following value: \n\n" +
        e.Content + "\n\nThis value is about to be written to the node that is bound to this control.");
}

void plainTextContentControl1_ContentUpdating(object sender, 
    Microsoft.Office.Tools.Word.ContentControlContentUpdatingEventArgs e)
{
    MessageBox.Show("The node that is bound to this control was changed to the following value: \n\n" +
        e.Content + "\n\nThis value is about to be written to this control.");
}

أمن NET Framework.

راجع أيضًَا

المرجع

ContentControlContentUpdatingEventArgs واجهة

ContentControlContentUpdatingEventArgs الأعضاء

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

موارد أخرى

عناصر تحكم المحتوى

نظرة عامة على أجزاء XML المخصصة

الإرشادات التفصيلية: ربط عناصر تحكم المحتوى إلى أجزاء XML المخصصة