Revision.Date Property (Word)

The date and time that the tracked change was made. Read-only Date.

Syntax

expression .Date

expression A variable that represents a Revision object.

Example

This example displays the date and time of the next tracked change found in the active document.

Dim revTemp As Revision 
 
If ActiveDocument.Revisions.Count >= 1 Then 
 Set revTemp = Selection.NextRevision 
 If Not (revTemp Is Nothing) Then MsgBox revTemp.Date 
End If

See Also

Concepts

Revision Object

Revision Object Members