码迷,mamicode.com
首页 > 其他好文 > 详细

VBA读取、增加自定义和修改文档属性

时间:2014-06-15 11:37:02      阅读:291      评论:0      收藏:0      [点我收藏+]

标签:ext   cti   name   for   type   res   

读取系统文档属性

Sub read()
On Error Resume Next
rw = 1
Worksheets(1).Activate
For Each p In ActiveWorkbook.BuiltinDocumentProperties
    Cells(rw, 1).Value = p.Name
    Cells(rw, 2) = p.Value
    rw = rw + 1
Next
End Sub

读取自定义文档属性

Sub Macro1()

 Cells(1, 2) = ActiveWorkbook.CustomDocumentProperties("完成日期").Value

End Sub

增加自定义属性

Sub add()
    ActiveWorkbook.CustomDocumentProperties.add Name:="完成日期", Type:=msoPropertyTypeDate, LinkToContent:=False, Value:="31/12/2009"
End Sub

修改

Sub modf()
     ActiveWorkbook.BuiltinDocumentProperties("Last Save Time").Value = "31/12/2009"
End Sub

删除

Sub del()
    ActiveWorkbook.CustomDocumentProperties("完成日期").delete
End Sub

VBA读取、增加自定义和修改文档属性,布布扣,bubuko.com

VBA读取、增加自定义和修改文档属性

标签:ext   cti   name   for   type   res   

原文地址:http://www.cnblogs.com/dongzhiquan/p/3789185.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!