Belirtilmemiş Tarih Formatı Desenini Görüntüle ve Özelleştir mm dd
Contents
[
Hide
]
Aspose.Cells for Python via .NET şu anda g, ge.mm.aa ve benzeri özel tarih biçimi desenlerini render edebilir. Lütfen ekteki kaynak excel dosyasını ve dönüştürülmüş PDF’yi Aspose.Cells ile kontrol ediniz.
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
from aspose.cells import Workbook | |
# For complete examples and data files, please go to https:# github.com/aspose-cells/Aspose.Cells-for-.NET | |
# The path to the documents directory. | |
dataDir = RunExamples.GetDataDir(".") | |
workbook = Workbook(dataDir + "SourceFile.xlsx") | |
workbook.save(dataDir + "CustomDateFormat_out.pdf") |