Browse our Products
Aspose.Cells for CPP 25.11 Release Notes
| Key | Summary | Category |
|---|---|---|
| CELLSNET-59210 | Add check to prevent deletion of partial table including the header | Enhancement |
| CELLSNET-59222 | Add check to prevent setting the name of one existing defined name to another Table | Enhancement |
| CELLSNET-59168 | Support to copy pivot tables when copying a range | Enhancement |
| CELLSNET-59175 | Support duplicated worksheet names for “DetailSheetNewName” parameter of smart marker | Enhancement |
| CELLSNET-59181 | Support exporting editable textboxes and shapes to pptx | Enhancement |
| CELLSNET-59223 | Support custom properties of worksheet in xlsb files | Enhancement |
| CELLSNET-59251 | Support to remove AutoFilter of the Table completely | Enhancement |
| CELLSNET-59305 | Support Style array as format setting when importing DataTable | Enhancement |
| CELLSNET-58673 | Formula text overlapping display when converting file to xps | Bug |
| CELLSNET-59184 | Calculating LET function results in “#NAME?” error | Bug |
| CELLSNET-59195 | XLS file becomes unsavable after the first save | Bug |
| CELLSNET-59196 | Lambda functions loaded from XLSB file were calculated as #NAME? | Bug |
| CELLSNET-59201 | Calculating Rand function used in the nested LET function results in “#NUM!” error | Bug |
| CELLSNET-59212 | Getting errors when trying to open the output Excel file in MS Excel | Bug |
| CELLSNET-59225 | Array formulas are not returning correct values | Bug |
| CELLSNET-59256 | ADDRESS function was calculated as #VALUE! when row/column number is negative | Bug |
| CELLSNET-59054 | Histogram value error when saving file to pdf | Bug |
| CELLSNET-59083 | Chart/Picture to image error when saving file to pdf | Bug |
| CELLSNET-59119 | After setting ‘Series.IsFiltered’ and ‘ChartCalculateOptions.UpdateAllPoints’ in Chart, the expected effect is not achieved | Bug |
| CELLSNET-59122 | Chart to Image Error with Histogram Chart Types | Bug |
| CELLSNET-59171 | Leader lines, axis and shadow missing for the charts in sheet to image rendering | Bug |
| CELLSNET-59176 | Shape to image Error when converting an XLSX file to PDF | Bug |
| CELLSNET-59177 | LegendEntry.IsDeleted property not working properly | Bug |
| CELLSNET-59194 | The PDF result file crashes while scrolling through after saving file to pdf | Bug |
| CELLSNET-59253 | The text in the result file overlaps when converting file to pdf | Bug |
| CELLSNET-59126 | HTML file is displayed incorrectly with “Freeze Panes” | Bug |
| CELLSNET-59134 | Cell colors in HTML are displayed incorrectly | Bug |
| CELLSNET-59156 | Some graphic elements are not displayed when saving file to html | Bug |
| CELLSNET-59170 | Get local label of grand total or total of pivot table when implementing GlobalizationSettings | Bug |
| CELLSNET-59183 | The filter is lost after refreshing and calculating pivot table | Bug |
| CELLSNET-59197 | Excel file cannot set custom unit labels after setting Chart.ValueAxis.DisplayUnitLabel.Text property | Bug |
| CELLSNET-59200 | Corrupted xlsx file after deleting worksheet | Bug |
| CELLSNET-59208 | Output file crashes after opening the result file and saving it again | Bug |
| CELLSNET-59216 | InsertCutCells now broken when copying array formulas | Bug |
| CELLSNET-59229 | Pourcentage column data error after refreshing and calculating PivotTable | Bug |
| CELLSNET-59242 | Invalid shown data of different from other pivot field | Bug |
| CELLSNET-59243 | Invalid result of showing values as different other pivot fields. | Bug |
| CELLSNET-59261 | Pivot background is not correctly shown in pdf | Bug |
| CELLSNET-59269 | Invalid column items of pivot table view | Bug |
| CELLSNET-59273 | Image transparency loss after copying worksheet | Bug |
| CELLSNET-59291 | Aspose.Cells cannot load camera shape correctly | Bug |
| CELLSNET-59294 | Invalid borders of default style after saving xlsb | Bug |
| CELLSNET-59295 | Using Cells.ImportData to import and format empty DateTime columns | Bug |
| CELLSNET-59252 | NullReferenceException occurs when calling WorksheetCollection.GetRangeByName method | Exception |
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.
Adds and obsoletes some methods in PivotField class.
Add:
bool IsValuesField()
PivotFieldGroupSettings GetGroupSettings()
Use PivotField::IsValuesField() instead.
Adds and obsoletes some methods in PivotTable class.
Add:
Obsoletes:
Use PivotTable::GetValuesField() instead.
Adds two methods in CustomProperty class.
Gets the binary value of worksheet custom property.
Vector<uint8_t> GetBinaryValue()
void SetBinaryValue(const Vector<uint8_t>& value)
Adds and obsoletes some methods in ListObject class.
Add:
Removes auto filter from the table.
Indicates whether auto filter is applied to this table.
bool GetHasAutoFilter()
void SetHasAutoFilter(bool value)
Obsoletes:
Use ListObject::GetHasAutoFilter()/SetHasAutoFilter(…) methods instead.
Obsoletes two methods in Top10Filter class.
Please ignore these methods. They are only used to cache temporary values.
Aspose::Cells::Object GetCriteria()
void SetCriteria(const Aspose::Cells::Object& value)
Adds one method in Worksheet.Filter(CellArea) method.
Applies auto filter to the range.
Adds two methods in ImportTableOptions class.
Gets or sets the styles for the columns of the table.
Vector<Style> GetStyles()
void SetStyles(const Vector<Style>& value)
Adds one method in MultipleFilterCollection class.
Adds DateTime item for multi filters.
Adds and obsoletes some methods in FilterColumn class.
Please obtain the corresponding filter based on the type.
Add:
MultipleFilterCollection GetMultipleFilters()
void SetMultipleFilters(const MultipleFilterCollection& value)
CustomFilterCollection GetCustomFilters()
void SetCustomFilters(const CustomFilterCollection& value)
ColorFilter GetColorFilter()
DynamicFilter GetDynamicFilter()
IconFilter GetIconFilter()
Top10Filter GetTop10Filter()
Obsolete:
Use FilterColumn::GetMultipleFilters()/SetMultipleFilters(…),FilterColumn::GetCustomFilters() and so on… methods, instead.
Aspose::Cells::Object GetFilter()
void SetFilter(const Aspose::Cells::Object& value)
Adds two methods in MarkdownSaveOptions class.
Indicates how to export Equations to Markdown.
HtmlOfficeMathOutputType GetOfficeMathOutputType()
void SetOfficeMathOutputType(HtmlOfficeMathOutputType value)
**Adds HtmlLayoutMode enum.
Represents the layout mode for HTML rendering.
Adds two methods in HtmlSaveOptions class.
Gets or sets the layout mode when saving to HTML.
HtmlLayoutMode GetLayoutMode()
void SetLayoutMode(HtmlLayoutMode value)