Browse our Products
Aspose.Cells for Node.js via C++ 25.9 Release Notes
Key | Summary | Category |
---|---|---|
CELLSNET-58691 | Support WRAPCOLS, WRAPROWS function | New Feature |
CELLSNET-58865 | Support font Variation Selectors while converting to xps | New Feature |
CELLSNET-58928 | Support font Variation Selectors while converting to svg with embedded font | New Feature |
CELLSNET-58961 | Support embedding fonts when converting file to html | New Feature |
CELLSNET-58945 | Support FlatOPC file format | New Feature |
CELLSNET-58963 | Support converting chart to flapOpc without table tags | New Feature |
CELLSNET-58967 | Supported editable charts to pptx file | New Feature |
CELLSNET-58933 | Support const values as data source of chart in the docx file | Enhancement |
CELLSNET-58970 | Support exporting editable ole object to pptx | Enhancement |
CELLSNET-58904 | XLSX to PDF: Shape not rendered correctly in the output | Bug |
CELLSNET-58924 | XLSX to XPS: WordArt rendered incorrectly in output | Bug |
CELLSNET-58490 | The date texts are displayed as # when converting file to xps | Bug |
CELLSNET-40852 | Hovering mouse on themes does not change the theme colors in xls format. Xlsx format works fine. | Bug |
CELLSNET-58515 | The font size of label within the pie chart seem to be bigger than the rest when rendering to image | Bug |
CELLSNET-58516 | The position of label inside the pie in each portion does not seem to be centered in some cases when rendering to image | Bug |
CELLSNET-58888 | Generated file is corrupted if pivot table contains OLAP data source | Bug |
CELLSNET-58889 | Invalid pivot row item if only refreshing data source of pivot table | Bug |
CELLSNET-58900 | Re-saving an XLSX file can lead to corruption of the pivot table | Bug |
CELLSNET-58901 | Single quote in the file name of pivot table’s data source was duplicated when converting xlsb to xlsx | Bug |
CELLSNET-58907 | CopyRows/CopyColumns: NullReferenceException when copying styles to a new Workbook | Bug |
CELLSNET-58925 | Sorting the autofiltered data caused excel to crash for xlsx file generated by cells | Bug |
CELLSNET-58958 | Exception while rendering to DOCX | Bug |
CELLSNET-58972 | NullReferenceException occurs when calling Cells.InsertCutCells method | Bug |
CELLSNET-58978 | Formulas with relative references aren’t carried over when copied to a new location | Bug |
Public API and Backwards Incompatible Changes
The following is a list of any changes made to the public API such as added, renamed, removed or deprecated members as well as any non-backward compatible change made to Aspose.Cells for C++. If you have concerns about any change listed, please raise it on the Aspose.Cells support forum.
Changes default date format for locale of Japan.
For default date format(built-in number 14 for the number formatting), old versions of ms excel use the pattern of “yyyy/MM/dd” to format date value. But in office 365, now ms excel uses the pattern of “yyyy/M/d” instead. Now that some users require to get the same result with what they get in office 365, starting from 25.9 we use “yyyy/M/d” to format date by default.
Adds member FileFormatType::FlatOpc in FileFormatType enum.
Represents Microsoft Flat Opc Document file format.
Adds two methods in OoxmlSaveOptions class.
Indicates whether to save as Flat Opc file.
bool GetAsFlatOpc()
void SetAsFlatOpc(bool value)
Adds enum SaveElementType.
Represents what kind of elements should be saved.
Adds six methods in DocxSaveOptions class.
Indicates whether to save as Flat Opc file.
bool GetAsFlatOpc()
void SetAsFlatOpc(bool value)
Represents what should be saved to docx file.
SaveElementType GetSaveElementType();
void SetSaveElementType(SaveElementType value);
Indicates whether to embed an xlsx file as data source of the chart.
bool GetEmbedXlsxAsChartDataSource()
void SetEmbedXlsxAsChartDataSource(bool value)
Adds six methods in PptxSaveOptions class.
Indicates whether to save as Flat Opc file.
bool GetAsFlatOpc()
void SetAsFlatOpc(bool value)
Indicates whether to embed an xlsx file as data source of the chart.
bool GetEmbedXlsxAsChartDataSource()
void SetEmbedXlsxAsChartDataSource(bool value)
Indicates whether to save editable shapes or images to pptx.
bool GetSaveAsEditableShapes()
void SetSaveAsEditableShapes(bool value)
Adds enum HtmlEmbeddedFontType.
Represents the embedded font type in html.
Adds two methods in HtmlSaveOptions class.
Represents the embedded font type in html.
HtmlEmbeddedFontType GetEmbeddedFontType()
void SetEmbeddedFontType(HtmlEmbeddedFontType value)
Adds four methods in MarkdownSaveOptions class.
Indicates whether to export hyperlink using reference definitions instead of inline format.
bool GetExportHyperlinkAsReference()
void SetExportHyperlinkAsReference(bool value)
Gets or sets the character used to pad cell content for aligning columns.
char16_t GetAlignColumnPadding()
void SetAlignColumnPadding(char16_t value)