PageSetup.SetAsTemplateDefault Method (Word)
Sets the specified page setup formatting as the default for the active document and all new documents based on the active template.
Syntax
expression .SetAsTemplateDefault
expression Required. A variable that represents a PageSetup object.
Example
This example changes the left and right margin settings for the active document and then sets the page setup formatting as the default.
With ActiveDocument.PageSetup
.LeftMargin = InchesToPoints(1)
.RightMargin = InchesToPoints(1)
.SetAsTemplateDefault
End With