Render Custom Date Format Pattern g and ge mm dd

Contents
[ ]

The following sample code converts the source excel file which contains date values with custom format patterns like g and ge.mm.dd into output PDF.

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")