Item

DocumentPropertyCollection indexer (1 of 2)

返回一个DocumentProperty对象的属性名称。

public virtual DocumentProperty this[string name] { get; }
范围描述
name要检索的属性的名称(不区分大小写)。

评论

退货无效的如果未找到具有指定名称的属性。

例子

演示如何创建包含日期和时间的自定义文档属性。

Document doc = new Document();

doc.CustomDocumentProperties.Add("AuthorizationDate", DateTime.Now);

Console.WriteLine($"Document authorized on {doc.CustomDocumentProperties["AuthorizationDate"].ToDateTime()}");

也可以看看


DocumentPropertyCollection indexer (2 of 2)

返回一个DocumentProperty按索引的对象.

public DocumentProperty this[int index] { get; }
范围描述
index从零开始的索引DocumentProperty检索。

例子

展示如何使用自定义文档属性。

Document doc = new Document(MyDir + "Properties.docx");

// 每个文档都包含自定义属性的集合,这些属性与内置属性一样,都是键值对。
 // 该文档有一个固定的内置属性列表。用户创建所有自定义属性。
Assert.AreEqual("Value of custom document property", doc.CustomDocumentProperties["CustomProperty"].ToString());

doc.CustomDocumentProperties.Add("CustomProperty2", "Value of custom document property #2");

Console.WriteLine("Custom Properties:");
foreach (var customDocumentProperty in doc.CustomDocumentProperties)
{
    Console.WriteLine(customDocumentProperty.Name);
    Console.WriteLine($"\tType:\t{customDocumentProperty.Type}");
    Console.WriteLine($"\tValue:\t\"{customDocumentProperty.Value}\"");
}

也可以看看