Options.SaveInterval Property

Word Developer Reference

Returns or sets the time interval in minutes for saving AutoRecover information. Read/write Long.

Syntax

expression.SaveInterval

expression   An expression that returns an Options object.

Remarks

Set the SaveInterval property to 0 (zero) to turn off saving AutoRecover information.

Example

This example sets Word to save AutoRecover information for all open documents every five minutes.

Visual Basic for Applications
  Options.SaveInterval = 5

This example prevents Word from saving AutoRecover information.

Visual Basic for Applications
  Options.SaveInterval = 0

This example returns the current status of the Save AutoRecover info every option on the Save tab in the Options dialog box (Tools menu).

Visual Basic for Applications
  temp = Options.SaveInterval

See Also