カスタム日付形式パターン g および ge mm dd のレンダリング
Contents
[
Hide
]
Aspose.Cells は、g、ge.mm.dd などのカスタム日付形式パターンをレンダリングできるようになりました。添付をご確認くださいソースエクセルファイルそしてその変換済み PDF Aspose.Cellsまでご連絡ください。
次のサンプル コードは、ソースエクセルファイル や 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-.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"); |