مشاركة عبر


DocumentBase.SummaryLength الخاصية

الحصول أو يعين طول التلخيص كـ نسبة مئوية من مدة مستند.

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

بناء الجملة

'إقرار
Public Property SummaryLength As Integer
    Get
    Set
public int SummaryLength { get; set; }

قيمة الخاصية

النوع: System.Int32
الطول التلخيص كـ نسبة مئوية من مدة مستند.

ملاحظات

كلما زاد العدد، المزيد من التفاصيل هو المضمن في التلخيص.

Th هو خاصية نافذ المفعول فورا في حال شريط الأدوات التلخيص التلقائي هو dهوplayed؛ otherwهوe، نافذ المفعول التالي مرة AutoSummarizeأسلوب أو SummaryViewModeخاصية هو تطبيقها على التطبيق.

أمثلة

يلي تعليمات برمجية في المثال إضافة نص إلى الفقرة الأولى من مستند. تعليمات برمجية ثم يعرض الملخص و يعين المستوى التفاصيل إلى 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.

راجع أيضًَا

المرجع

DocumentBase الفئة

DocumentBase الأعضاء

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