SummaryLength Property Example

This example highlights the key points in the active document. The level of detail is set to 50 percent.

With ActiveDocument
    .AutoSummarize Mode:=wdSummaryModeHighlight
    .SummaryLength = 50
End With

This example displays the summary and sets the level of detail to 55 percent.

With ActiveDocument
    .ShowSummary = True
    .SummaryLength = 55
End With