DocumentLibraryVersion.Modified 属性 (Office)
获取共享文档的指定版本上一次保存到服务器的日期和时间。 此为只读属性。
语法
表达式。改 性
表达 一个代表 DocumentLibraryVersion 对象的变量。
备注
每当用户打开文档时,都会在服务器上创建一个新版本,并在用户保存更改时更新;每次用户将更改保存到打开的文档时,都不会创建其他版本。 活动文档版本的 Modified 属性表示用户上次保存对打开文档所做的更改的时间。
示例
以下示例显示每个版本的共享文档的 修改 日期和时间以及其他属性。
Dim dlvVersions As Office.DocumentLibraryVersions
Dim dlvVersion As Office.DocumentLibraryVersion
Dim strVersionInfo As String
Set dlvVersions = ActiveDocument.DocumentLibraryVersions
If dlvVersions.IsVersioningEnabled Then
strVersionInfo = "This document has " & _
dlvVersions.Count & " versions: " & vbCrLf
For Each dlvVersion In dlvVersions
strVersionInfo = strVersionInfo & _
" - Version #: " & dlvVersion.Index & vbCrLf & _
" - Modified by: " & dlvVersion.ModifiedBy & vbCrLf & _
" - Modified on: " & dlvVersion.Modified & vbCrLf & _
" - Comments: " & dlvVersion.Comments & vbCrLf
Next
Else
strVersionInfo = "Versioning not enabled for this document."
End If
MsgBox strVersionInfo, vbInformation + vbOKOnly, "Version Information"
Set dlvVersion = Nothing
Set dlvVersions = Nothing
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。