UpdateSummaryProperties Method

Applies To

Document object.

Description

Updates the keyword and comment text in the Properties dialog box (File menu) to reflect the AutoSummary content for the specified document.

Syntax

expression.UpdateSummaryProperties

expression Required. An expression that returns a Document object.

See Also

AutoSummarize method.

Example

This example highlights key points in the active document and updates the summary information in the Properties dialog box (File menu).

With ActiveDocument
    .AutoSummarize Length:=wd25Percent, Mode:=wdSummaryModeHighlight
    .UpdateSummaryProperties
End With