Versions Property

Applies To

Document object.

Description

Returns a Versions collection that represents all the versions of the specified document. Read-only.

See Also

AutoVersion property.

Example

This example displays the user name and date of the most recent version of the document.

If ActiveDocument.Versions.Count >= 1 Then
    Set aVersion = ActiveDocument.Versions(ActiveDocument.Versions.Count)
    MsgBox "Saved by " & aVersion.SavedBy & " on " & aVersion.Date
End If
This example saves a version of Contract.doc with a short comment.

Documents("Contract.doc").Versions.Save Comment:="Added a single word"