Share via


SaveAutoRecoverInfo Property.SaveAutoRecoverInfo Property

Publisher Developer ReferencePublisher Developer Reference

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

Syntax

expression.SaveAutoRecoverInfo

expression   A variable that represents a SaveAutoRecoverInfo Property 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.

Visual Basic for Applications
  Sub SetAutoRecoverInfo()
    With Options
        .SaveAutoRecoverInfo = True
        .SaveAutoRecoverInfoInterval = 5
    End With
End Sub

See Also