Aspose.Cells による出力PDFでUnicode補助文字をレンダリングする

##Aspose.Cellsによる出力PDFでUnicode上位文字をレンダリングする

下記のスクリーンショットは、Aspose.CellsがソースExcelファイル出力PDFにレンダリングした様子を示しています。すべての3つのUnicode上位文字は、Microsoft Excelによって行われるのと同じように正確にレンダリングされています。

todo:image_alt_text

サンプルコード

ソースExcelファイル出力PDFに変換するためのサンプルコードを使用できます。

// 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);
// Load your source excel file containing Unicode Supplementary characters
Workbook wb = new Workbook(dataDir + "unicode-supplementary-characters.xlsx");
// Save the workbook
wb.Save(dataDir + "RenderUnicodeInOutput_out.pdf");