Partager via


DocumentBase.SummaryLength, propriété

Obtient ou définit la longueur du résumé en tant que pourcentage de la longueur du document.

Espace de noms :  Microsoft.Office.Tools.Word
Assembly :  Microsoft.Office.Tools.Word.v4.0.Utilities (dans Microsoft.Office.Tools.Word.v4.0.Utilities.dll)

Syntaxe

'Déclaration
Public Property SummaryLength As Integer
public int SummaryLength { get; set; }

Valeur de propriété

Type : System.Int32
Longueur du résumé en tant que pourcentage de la longueur du document.

Notes

Plus la valeur est grande, plus le résumé contient de détails.

Cette propriété entre immédiatement en vigueur si la barre d'outils Synthèse automatique est affichée ; sinon, elle entre en vigueur la prochaine fois que la méthode AutoSummarize ou la propriété SummaryViewMode est appliquée au document.

Exemples

L'exemple de code suivant ajoute du texte au premier paragraphe du document.Le code affiche ensuite le résumé et définit le niveau de détail à 50 %.Pour utiliser cet exemple, exécutez-le à partir de la classe ThisDocument dans un projet au niveau du document.

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;
}

Sécurité .NET Framework

Voir aussi

Référence

DocumentBase Classe

Microsoft.Office.Tools.Word, espace de noms