تقديم نمط تاريخ مخصص g وge mm dd
Contents
[
Hide
]
Aspose.Cells الآن قادر على عرض نمط التنسيق تاريخ مخصص مثل g ، ge.mm.dd وما شابه. يرجى التحقق من ملف الإكسل المصدر المرفق و PDF المحول بواسطة Aspose.Cells للرجوع إليكم.
عرض أنماط التنسيق المخصصة للتاريخ مثل g و ge.mm.dd
يحول الشيفرة المثالية التالية ملف الإكسل المصدر الذي يحتوي على قيم تاريخية بأنماط تنسيق مخصصة مثل g و ge.mm.dd إلى PDF المحول.
This file contains 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
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java | |
// The path to the directories. | |
String sourceDir = Utils.Get_SourceDirectory(); | |
String outDir = Utils.Get_OutputDirectory(); | |
Workbook workbook = new Workbook(sourceDir + "sampleRenderCustomDateFormat.xlsx"); | |
workbook.save(outDir + "sampleRenderCustomDateFormat_out.pdf"); |