Share via


SaveAutoRecoverInfoInterval Property.SaveAutoRecoverInfoInterval Property

Publisher Developer Reference

Returns or sets a Long that represents the time interval in minutes for automatically saving a publication for recovery if the application is unexpectedly shut down. Read/write.

Syntax

expression.SaveAutoRecoverInfoInterval

expression   A variable that represents a SaveAutoRecoverInfoInterval Property object.

Return Value
Long

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