Options.AutoFormatAsYouTypeApplyClosings Property (Word)
True for Microsoft Word to automatically apply the Closing style to letter closings as you type. Read/write Boolean.
Syntax
expression .AutoFormatAsYouTypeApplyClosings
expression Required. A variable that represents an Options collection.
Example
This example sets Microsoft Word to automatically apply the Closing style to letter closings as you type.
Sub AutoClosings()
Options.AutoFormatAsYouTypeApplyClosings = True
End Sub