Compartir a través de


Revision.Date Property

Word Developer Reference

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.

Visual Basic for Applications
  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