Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.