当前位置: 代码迷 >> Office >> excel2007怎样插入类似于word的自定义文档属性解决方法
  详细解决方案

excel2007怎样插入类似于word的自定义文档属性解决方法

热度:9927   发布时间:2013-02-26 00:00:00.0
excel2007怎样插入类似于word的自定义文档属性
类似word域中的DocProperty

------解决方案--------------------------------------------------------
VB.NET code
Sub WbBuiltin()    With ThisWorkbook        .BuiltinDocumentProperties("Title") = ""        .BuiltinDocumentProperties("Subject") = ""        .BuiltinDocumentProperties("Author") = ""        .BuiltinDocumentProperties("Company") = ""        .BuiltinDocumentProperties("Comments") = ""        .BuiltinDocumentProperties("Keywords") = ""    End WithEnd Sub
  相关解决方案