Document.ShowSummary Property

Word Developer Reference

True if an automatic summary is displayed for the specified document. Read/write Boolean.

Syntax

expression.ShowSummary

expression   A variable that represents a Document object.

Example

This example hides everything in the active document except the summary text.

Visual Basic for Applications
  With ActiveDocument
    .SummaryViewMode = wdSummaryModeHideAllButSummary
    .SummaryLength = 30
    .ShowSummary = True
End With

See Also