Item
İçindekiler
[
Saklamak
]DocumentPropertyCollection indexer (1 of 2)
Bir değeri döndürürDocumentProperty
özelliğin adına göre nesne.
public virtual DocumentProperty this[string name] { get; }
Parametre | Tanım |
---|---|
name | Alınacak özelliğin büyük/küçük harfe duyarlı olmayan adı. |
Notlar
İadelerhükümsüz
belirtilen ada sahip bir özellik bulunamazsa.
Örnekler
Tarih ve saat içeren özel bir belge özelliğinin nasıl oluşturulacağını gösterir.
Document doc = new Document();
doc.CustomDocumentProperties.Add("AuthorizationDate", DateTime.Now);
Console.WriteLine($"Document authorized on {doc.CustomDocumentProperties["AuthorizationDate"].ToDateTime()}");
Ayrıca bakınız
- class DocumentProperty
- class DocumentPropertyCollection
- ad alanı Aspose.Words.Properties
- toplantı Aspose.Words
DocumentPropertyCollection indexer (2 of 2)
Bir değeri döndürürDocumentProperty
indekse göre nesne.
public DocumentProperty this[int index] { get; }
Parametre | Tanım |
---|---|
index | Sıfır tabanlı endeksDocumentProperty geri almak için. |
Örnekler
Özel belge özellikleriyle nasıl çalışılacağını gösterir.
Document doc = new Document(MyDir + "Properties.docx");
// Her belge, yerleşik özellikler gibi anahtar/değer çiftleri olan özel özelliklerin bir koleksiyonunu içerir.
// Belgenin sabit bir yerleşik özellikler listesi vardır. Kullanıcı tüm özel özellikleri oluşturur.
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}\"");
}
Ayrıca bakınız
- class DocumentProperty
- class DocumentPropertyCollection
- ad alanı Aspose.Words.Properties
- toplantı Aspose.Words