AutoRecover.Time Property

Excel Developer Reference

Sets or returns the time interval for the AutoRecover object. Permissible values are integers from 1 to 120 minutes. The default value is 10 minutes. Read/write Long.

Syntax

expression.Time

expression   A variable that represents an AutoRecover object.

Remarks

Entering a decimal value will round to the nearest whole number. For example, entering a value of 5.5 is the equivalent of 6.

If time values outside the valid range are entered, Microsoft Excel will revert to the previous time value used.

Example

The following example sets the AutoRecover time interval to 5 minutes and notifies the user.

Visual Basic for Applications
  Sub SetTimeValue()
Application.<strong class="bterm">AutoRecover</strong>.Time = 5
MsgBox "The AutoRecover time interval is set at " &amp; _
    Application.<strong class="bterm">AutoRecover</strong>.Time &amp; " minutes."

End Sub

See Also