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 hidden or 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
const path = require("path"); | |
const AsposeCells = require("aspose.cells.node"); | |
// The path to the documents directory. | |
const dataDir = path.join(__dirname, "data"); | |
const filePath = path.join(dataDir, "SourceFile.xlsx"); | |
// Loads the workbook which contains hidden external links | |
const workbook = new AsposeCells.Workbook(filePath); | |
workbook.save(path.join(dataDir, "CustomDateFormat_out.pdf")); |