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}\"");
}

Смотрите также