ContentControlStoreUpdatingEventArgs.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 المكتب الكلمة بتحديث جزء XML المخصص الذي يرتبط بعنصر التحكم.
للمزيد من المعلومات، راجع عناصر تحكم المحتوى ونظرة عامة على أجزاء XML المخصصة.
أمثلة
يلي تعليمات برمجية يوضح المثال معالجات الأحداث ل StoreUpdatingو ContentUpdatingالأحداث. Th هو بفرض أن مستند يحتوي على PlainTextContentControlباسم plainTextContentControl1التي هو مرتبط بعنصر في part. XML مخصص تعليمات برمجية مثال يوضح كيفية يربط عنصر تحكم محتوى إلى عنصر في جزء XML مخصصة، راجع الإرشادات التفصيلية: ربط عناصر تحكم المحتوى إلى أجزاء XML المخصصة.
لاستخدام هذا تعليمات برمجية، لصقه في ThisDocumentالفئة في مشروع الخاص بك. C#، يجب يرفق حدث معالجات إلى StoreUpdatingو ContentUpdatingحدث s من plainTextContentControl1.
Th هو المثال هو لتخصيص المستوى مستند.
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.
- الثقة الكاملة للمتصل الفوري. يتعذر استخدام هذا العضو بواسطة التعليمات البرمجية الموثوق بها جزئيًا. لمزيد من المعلومات، راجع باستخدام مكتبات من تعليمات برمجية موثوق بها جزئي.
راجع أيضًَا
المرجع
ContentControlStoreUpdatingEventArgs واجهة
ContentControlStoreUpdatingEventArgs الأعضاء
Microsoft.Office.Tools.Word مساحة الاسم
موارد أخرى
نظرة عامة على أجزاء XML المخصصة
الإرشادات التفصيلية: ربط عناصر تحكم المحتوى إلى أجزاء XML المخصصة