DocumentBase.SummaryViewMode الخاصية
الحصول أو تعيين الطريقة خلاصة هو dهوplayed.
مساحة الاسم: Microsoft.Office.Tools.Word
التجميع: Microsoft.Office.Tools.Word.v4.0.Utilities (في Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
بناء الجملة
'إقرار
Public Property SummaryViewMode As WdSummaryMode
Get
Set
public WdSummaryMode SummaryViewMode { get; set; }
قيمة الخاصية
النوع: Microsoft.Office.Interop.Word.WdSummaryMode
واحد WdSummaryModeقيم.
ملاحظات
يتوافق مع هذه خاصية إلى كتابة التلخيص الخيارات في ميزة التلخيص التلقائي صندوق حوار.
أمثلة
يلي تعليمات برمجية في المثال إضافة نص إلى الفقرة الأولى من مستند. تعليمات برمجية ثم يعرض الملخص و يعين المستوى التفاصيل إلى 50 في المائة. إلى لاستخدام هذا المثال، قم بتشغيلها من ThisDocumentالفئة في مشروع المستوى مستند.
Private Sub DocumentSummaryLength()
Me.Paragraphs(1).Range.InsertParagraphBefore()
Me.Paragraphs(1).Range.Text = "The SummaryLength property" & _
" returns or sets the length of the summary as a " & _
" percentage of the document length. The larger the number," & _
" the more detail that's included in the summary."
Me.SummaryViewMode = Word.WdSummaryMode.wdSummaryModeHighlight
Me.ShowSummary = True
Me.SummaryLength = 50
End Sub
private void DocumentSummaryLength()
{
this.Paragraphs[1].Range.InsertParagraphBefore();
this.Paragraphs[1].Range.Text = "The SummaryLength property"
+ " returns or sets the length of the summary as a "
+ " percentage of the document length. The larger the number,"
+ " the more detail that's included in the summary.";
this.SummaryViewMode = Word.WdSummaryMode.wdSummaryModeHighlight;
this.ShowSummary = true;
this.SummaryLength = 50;
}
أمن NET Framework.
- الثقة الكاملة للمتصل الفوري. يتعذر استخدام هذا العضو بواسطة التعليمات البرمجية الموثوق بها جزئيًا. لمزيد من المعلومات، راجع باستخدام مكتبات من تعليمات برمجية موثوق بها جزئي.