SaveAutoRecoverInfo Property

Microsoft Publisher Visual Basic

expression.SaveAutoRecoverInfo

expression    Required. An expression that returns one of the objects in the Applies To list.

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