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

Revision Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.