BuiltInDocumentProperties

Workbook.BuiltInDocumentProperties property

返回一个DocumentProperty表示电子表格的所有内置文档属性的集合。

public BuiltInDocumentPropertyCollection BuiltInDocumentProperties { get; }

评论

无法将新属性添加到内置文档属性列表中。您只能获取一个内置属性并更改其值。 以下是内置属性名称列表:

标题

主题

作者

关键词

注释

模板

最后作者

修订号

应用名称

最后打印日期

创建日期

上次保存时间

总编辑时间

页数

字数

字符数

安全

类别

格式

经理

公司

字节数

行数

段落数

载玻片数

音符数量

隐藏幻灯片的数量

多媒体剪辑数量

例子

[C#]
Workbook workbook = new Workbook();
DocumentProperty doc = workbook.BuiltInDocumentProperties["Author"];
doc.Value = "John Smith";

[Visual Basic]
Dim workbook as Workbook = New Workbook()
Dim doc as DocumentProperty = workbook.BuiltInDocumentProperties("Author")
doc.Value = "John Smith"

也可以看看