DefaultWebOptions.SaveNewWebPagesAsWebArchives property (Word)

True for Microsoft Word to save new Web pages in the Single File Web Page (formerly known as Web Archive) format. Read/write Boolean.

Syntax

expression.SaveNewWebPagesAsWebArchives

expression An expression that returns a DefaultWebOptions object.

Remarks

Setting the SaveNewWebPagesAsWebArchives property won't change the format of any saved Web pages. To change their format, you must individually open them and then use the SaveAs2 method to set the webpage format.

Example

This example enables the SaveNewWebPagesAsWebArchives property so that when Web pages are saved, they are saved in the Single File Web Page format.

Sub SetWebOption() 
 Application.DefaultWebOptions _ 
 .SaveNewWebPagesAsWebArchives = True 
End Sub

See also

DefaultWebOptions Object

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.