Rendera anpassat datumformat mönster g och ge mm dd

Contents
[ ]

Följande exempelkod konverterar källkalkylbladsfilen som innehåller datumvärden med anpassade formatmallar som g och ge.mm.dd till utdata-PDF:en.

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