gおよびge mm ddのカスタム日付形式パターンをレンダリングする

Contents
[ ]

以下のサンプルコードは、gやge.mm.ddなどのカスタム形式パターンを含むsource excel fileを変換し、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")