Belirtilmemiş Tarih Formatı Desenini Görüntüle ve Özelleştir mm dd
Contents
[
Hide
]
Aspose.Cells artık g, ge.mm.dd gibi özel tarih format desenlerini işleyebilir. Referansınız için lütfen ekli kaynak excel dosyasını ve Aspose.Cells tarafından dönüştürülmüş PDF’yi kontrol edin.
Aşağıdaki örnek kod, kaynak excel dosyasını dönüştürürken Belirtilmemiş Tarih Desenlerini Görüntüle ve Özelleştirir ve çıktı PDF’sini oluşturur.
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); | |
Workbook workbook = new Workbook(dataDir + "SourceFile.xlsx"); | |
workbook.Save(dataDir + "CustomDateFormat_out.pdf"); |