Browse our Products
Aspose.Cells for Go via CPP 25.9 Release Notes
Key | Summary | Category |
---|---|---|
CELLSGO-198 | Optimize the compilation speed of the Cells Go library. | Improvement |
CELLSCPP-1127 | Add examples to distribution package for C++ | Improvement |
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 Go via 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.
func (instance *OoxmlSaveOptions) GetAsFlatOpc() (bool, error)
func (instance *OoxmlSaveOptions) SetAsFlatOpc(value bool) error
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.
func (instance *DocxSaveOptions) GetAsFlatOpc() (bool, error)
func (instance *DocxSaveOptions) SetAsFlatOpc(value bool) error
Represents what should be saved to docx file.
func (instance *DocxSaveOptions) GetSaveElementType() (SaveElementType, error)
func (instance *DocxSaveOptions) SetSaveElementType(value SaveElementType) error
Indicates whether to embed an xlsx file as data source of the chart.
func (instance *DocxSaveOptions) GetEmbedXlsxAsChartDataSource() (bool, error)
func (instance *DocxSaveOptions) SetEmbedXlsxAsChartDataSource(value bool) error
Adds six methods in PptxSaveOptions class.
Indicates whether to save as Flat Opc file.
func (instance *PptxSaveOptions) GetAsFlatOpc() (bool, error)
func (instance *PptxSaveOptions) SetAsFlatOpc(value bool) error
Indicates whether to embed an xlsx file as data source of the chart.
func (instance *PptxSaveOptions) GetEmbedXlsxAsChartDataSource() (bool, error)
func (instance *PptxSaveOptions) SetEmbedXlsxAsChartDataSource(value bool) error
Indicates whether to save editable shapes or images to pptx.
func (instance *PptxSaveOptions) GetSaveAsEditableShapes() (bool, error)
func (instance *PptxSaveOptions) SetSaveAsEditableShapes(value bool) error
Adds enum HtmlEmbeddedFontType.
Represents the embedded font type in html.
Adds two methods in HtmlSaveOptions class.
Represents the embedded font type in html.
func (instance *HtmlSaveOptions) GetEmbeddedFontType() (HtmlEmbeddedFontType, error)
func (instance *HtmlSaveOptions) SetEmbeddedFontType(value HtmlEmbeddedFontType) error
Adds four methods in MarkdownSaveOptions class.
Indicates whether to export hyperlink using reference definitions instead of inline format.
func (instance *MarkdownSaveOptions) GetExportHyperlinkAsReference() (bool, error)
func (instance *MarkdownSaveOptions) SetExportHyperlinkAsReference(value bool) error
Gets or sets the character used to pad cell content for aligning columns.
func (instance *MarkdownSaveOptions) GetAlignColumnPadding() (byte, error)
func (instance *MarkdownSaveOptions) SetAlignColumnPadding(value byte) error