Çalışma Kitabı Meta Verisi Kullanımı
Contents
[
Hide
]
Aspose.Cells, bir çalışma kitabının hafif bir sürümünü belleğe yükleyerek meta veri bilgilerini düzenlemenizi sağlar. Lütfen WorkbookMetadata sınıfını kullanın.
Aşağıdaki örnek kod, bir çalışma kitabının özel belge özelliklerini düzenlemek için WorkbookMetadata sınıfını kullanmaktadır. Workbook sınıfını kullanarak çalışma kitabını açtığınızda, belge özelliklerini okuyabileceksiniz. İşte WorkbookMetadata sınıfını kullanarak örnek bir kod.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Open Workbook metadata | |
MetadataOptions options = new MetadataOptions(MetadataType.DocumentProperties); | |
WorkbookMetadata meta = new WorkbookMetadata(dataDir + "Sample1.xlsx", options); | |
// Set some properties | |
meta.CustomDocumentProperties.Add("test", "test"); | |
// Save the metadata info | |
meta.Save(dataDir + "Sample2.out.xlsx"); | |
// Open the workbook | |
Workbook w = new Workbook(dataDir + "Sample2.out.xlsx"); | |
// Read document property | |
Console.WriteLine(w.CustomDocumentProperties["test"]); | |
Console.WriteLine("Press any key to continue..."); | |
Console.ReadKey(); |