Options.SaveAutoRecoverInfo property (Publisher)

True if Microsoft Publisher automatically saves publications for recovery if the application is unexpectedly shut down. Read/write Boolean.

Syntax

expression.SaveAutoRecoverInfo

expression A variable that represents an Options object.

Return value

Boolean

Remarks

Use the SaveAutoRecoverInfoInterval property to specify how often auto recovery saves occur.

Example

This example enables the global auto recovery option and sets the save interval to every five minutes.

Sub SetAutoRecoverInfo() 
 With Options 
 .SaveAutoRecoverInfo = True 
 .SaveAutoRecoverInfoInterval = 5 
 End With 
End Sub

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.