Releases: aspose-cells/aspose-cells-go-cpp
Aspose.Cells for Go via C++ v25.8.0
This page contains release notes for Aspose.Cells for Go via C++ 25.8.
Key | Summary | Category |
---|---|---|
CELLSNET-54523 | Support for EXPAND formula | New Feature |
CELLSNET-58806 | Support COT/COTH function | New Feature |
CELLSNET-58809 | Support REDUCE function | New Feature |
CELLSNET-55776 | Support font Variation Selectors while converting to pdf | New Feature |
CELLSNET-58803 | Preserve freezed top rows when converting worksheet to HTML | New Feature |
CELLSNET-58755 | Support "if" parameter of smart marker | Enhancement |
CELLSNET-58756 | Support Variables in formula smart marker | Enhancement |
CELLSNET-58724 | Auto adjust width for textbox according its text | Bug |
CELLSNET-58741 | Shape has lost some text when converting excel to pdf | Bug |
CELLSNET-58774 | Excel crashes when opening the Excel file (generated by Aspose.Cells) containing free form shape | Bug |
CELLSNET-58274 | The row hidden status is incorrect after the filter operation in MemoryPreference mode | Bug |
CELLSNET-58413 | NullReferenceException occurred when using LightCellsDataProvider with XlsSaveOptions | Bug |
CELLSNET-58497 | Aspose.Cells is incorrectly determining formula spill range | Bug |
CELLSNET-58620 | Extra single quotes were added to the formula when saving xlsb to xlsm | Bug |
CELLSNET-58684 | Array formulas are not fully calculated | Bug |
CELLSNET-58758 | Change default behavior of calculating AND/OR function with string parameters | Bug |
CELLSNET-58760 | Table references with "@" was not calculated correctly | Bug |
CELLSNET-58761 | Excel hyperlinks break when copying rows | Bug |
CELLSNET-58775 | Calculated result of range for IFS function is incorrect | Bug |
CELLSNET-58781 | Lambda functions not calculating properly | Bug |
CELLSNET-58791 | XLSM to PDF: Formulas not converted correctly | Bug |
CELLSNET-58792 | Incorrect workbook (formula) calculation when EnableCalculationChain = true | Bug |
CELLSNET-58804 | The AbstractCalculationEngine paramters sometimes reference incorrect values | Bug |
CELLSNET-58719 | Incorrect formula processing for TOCOL and nested array multiplier with true of scan_by_column | Bug |
CELLSNET-58821 | SCAN function was not calculated correctly | Bug |
CELLSNET-58799 | DataLabels is not wrapped in TreeMap chart. | Bug |
CELLSNET-58826 | Chart labels are rendered incorrectly when converting to image | Bug |
CELLSNET-58850 | Image looks slightly different than in Excel after rendering | Bug |
CELLSNET-52349 | The characters specified in the Variation Selectors are garbled when rendering to PDF | Bug |
CELLSNET-53681 | Texts using IPAmj Mincho fonts show error when converting file to pdf | Bug |
CELLSNET-55590 | Issue with Kanji Character Conversion from XLSX to PDF | Bug |
CELLSNET-58372 | Text data displays garbled characters when converting file to pdf | Bug |
CELLSNET-58505 | Some chars are garbled in Excel to PDF conversion | Bug |
CELLSNET-58846 | Text is corrupted while converting to pdf with CJK edit language option | Bug |
CELLSNET-58687 | Unexpected reference after processing json smart martmarker. | Bug |
CELLSNET-58731 | Invalid vertical alignment of xlsb | Bug |
CELLSNET-58743 | Outline levels not copying correctly with multiple source ranges | Bug |
CELLSNET-58744 | Invalid ValidationAlertType string val | Bug |
CELLSNET-58749 | Invalid referred array formulas when table was removed | Bug |
CELLSNET-58753 | Duplicate named style when reading styles from xlsb | Bug |
CELLSNET-58848 | Pivot tables with filters and without rows and columns lose formatting upon being refreshed | Bug |
CELLSNET-58765 | Exception "Object reference not set to an instance of an object" when merging named styles of workbooks | Exception |
CELLSNET-58766 | Exception "Object reference not set to an instance of an object" when saving as ods | Exception |
CELLSNET-58772 | OverflowException(Arithmetic operation resulted in an overflow) occurs when opening xlsx file | 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 enum ShapePathPointValueType.
Specifies the value type of ShapePathPoint object.
Adds MarkdownLoadOptions struct.
Represents the options for loading markdown document.
Adds and deprecates some methods in ShapePathPoint struct.
Add
- Specifies the value type(position coordinate or angle marker) of the current object.
func Int32ToShapePathPointValueType(value int32)(ShapePathPointValueType ,error)
func (instance *ShapePathPoint) GetType() (ShapePathPointValueType, error)
- When the object is a position coordinate, get or set the x/y coordinate in pixels.
func (instance *ShapePathPoint) GetXPixel() (int32, error)
func (instance *ShapePathPoint) SetXPixel(value int32) error
func (instance *ShapePathPoint) GetYPixel() (int32, error)
func (instance *ShapePathPoint) SetYPixel(value int32) error
- When the object is an angle marker, get or set the first/second angle in degrees.
func (instance *ShapePathPoint) GetXAngle() (int32, error)
func (instance *ShapePathPoint) SetXAngle(value int32) error
func (instance *ShapePathPoint) GetYAngle() (int32, error)
func (instance *ShapePathPoint) SetYAngle(value int32) error
Deprecate(Remove)
- Please use ShapePathPoint.XPixel/YPixel or XAngle/YAngle instead in unit of pixel/degree accordingly.
func (instance *ShapePathPoint) GetX() (int32, error)
func (instance *ShapePathPoint) SetX(value int32) error
func (instance *ShapePathPoint) GetY() (int32, error)
func (instance *ShapePathPoint) SetY(value int32) error
Obsoletes(Removes) one method in ShapePathPointCollection struct.
- Please use the MoveTo, LineTo, CubicBezierTo and ArcTo methods of ShapePath instead.
func (instance *ShapePathPointCollection) GetCount(x int32 ,y int32) (int32, error)
Adds one method in WorkbookSettings struct.
- Gets the default settings for smart tags.
func (instance *WorkbookSettings) GetSmartTagOptions() (*SmartTagOptions, error)
Adds two methods in PasteOptions struct.
- Indicates whether to keep tables in the destination range.
func (instance *PasteOptions) GetKeepOldTables() (bool, error)
func (instance *PasteOptions) GetKeepOldTables() (bool, error)
Adds enum ChartColorPaletteType.
- Enumerates all Monochromatic Palettes used in Excel chart.
Adds one method in SeriesCollection struct.
- Set Monochromatic Palette for chart series.
func (instance *SeriesCollection) ChangeColors(type_ ChartColorPaletteType) error
Aspose.Cells for Go via C++ v25.7.0
This page contains release notes for Aspose.Cells for Go via C++ 25.7.
Key | Summary | Category |
---|---|---|
CELLSCPP-1172 | Aspose.Cells 25.6 C++ - core dump running on Linux | Bug |
CELLSNET-58586 | Support ISOMITTED function in calculating LAMBDA function | New Feature |
CELLSNET-58216 | Support TAKE function | New Feature |
CELLSNET-58593 | Support Variables in Excel template for smart marker | New Feature |
CELLSNET-58504 | Support exporting floating picture to Numbers | New Feature |
CELLSNET-58696 | Optimize the rendering of polylines when generating PDF files | Enhancement |
CELLSNET-58559 | Aspose.Cells equivalent of VBA Styles.Merge | Enhancement |
CELLSNET-58602 | Support exporting Excel to docx as paste | Enhancement |
CELLSNET-58162 | Enhance the export of cell formats to Numbers | Enhancement |
CELLSNET-58513 | Shapes have different lines with excel when converting file to pdf | Bug |
CELLSNET-58671 | The result file cannot edit points after adding free form | Bug |
CELLSNET-58674 | The shape becomes a gray filled area when converting file to xps | Bug |
CELLSNET-58680 | Fix the issue of incomplete rendering arc | Bug |
CELLSNET-58716 | Shape to image error when converting file to pdf | Bug |
CELLSNET-58572 | IndexOutOfRangeException occurs when calling Cell.SetDynamicArrayFormula method | Bug |
CELLSNET-58582 | Exception was thrown when using custom engine to ignore the calculation of custom functions | Bug |
CELLSNET-58583 | XLOOKUP should be calculated as error value but not when searched value is error | Bug |
CELLSNET-58598 | XLOOKUP was calculated incorrectly with single cell of ERROR value as searched range | Bug |
CELLSNET-58604 | FILTER() function should produce error when there is any error value in the filtered range | Bug |
CELLSNET-54534 | Support to cache cells data in disk/file to improve memory performance | Bug |
CELLSNET-58433 | Leaderlines still visible in the chart even we disable in code | Bug |
CELLSNET-58452 | Chart.CategoryAxis.GetAxisTexts() are not the same as what MS Excel shows | Bug |
CELLSNET-58554 | Chart transparent line is visible and dashed line is printed like dotted | Bug |
CELLSNET-58573 | The result image is missing the title and leader lines of chart displayed in excel when saving chart to image | Bug |
CELLSNET-58618 | Location of PlotArea in charts is no longer calculated properly in recent Aspose.Cells version | Bug |
CELLSNET-58693 | The XAxis labels shown in legend when converting chart to image | Bug |
CELLSNET-58597 | The sheet bar context menu does not show | Bug |
CELLSNET-58474 | The timeline is inconsistent with excel when converting file to xps | Bug |
CELLSNET-58553 | Language property of reading options is different when converting file to PDF with exporting document structure | Bug |
CELLSNET-58580 | The blocks of timeline exceed plot area while converting to xps/pdf | Bug |
CELLSNET-58581 | The fill of the first block of timeline is not right while converting to xps | Bug |
CELLSNET-58686 | 'Operation is not supported on this platform' exception occurs while opening workbook in Blazor WebAssembly | Bug |
CELLSNET-58676 | Saving in HTML is not correct | Bug |
CELLSNET-58499 | Regression: CalculateData throws System.NullReferenceException | Bug |
CELLSNET-58564 | ArgumentException(The password could not be null or empty) occurs when saving file using MetadataOptions | Bug |
CELLSNET-58574 | Corrupted pivot table view when changing the name of data field | Bug |
CELLSNET-58578 | Unnecessary total label in the pivot table view. | Bug |
CELLSNET-58591 | Cells.importdata is failing if there is invalid formula | Bug |
CELLSNET-58607 | Invalid IconSetType val | Bug |
CELLSNET-58611 | Totals row in the table is not recovering correctly | Bug |
CELLSNET-58623 | NotPrimitive shape need to resize when resize in excel | Bug |
CELLSNET-58627 | Throws an Exception when opening file with pivot table. | Bug |
CELLSNET-58641 | The comment should be hidden | Bug |
CELLSNET-58681 | 'System.IndexOutOfRangeException' occurred in Aspose.Cells.dll: 'Index was outside the bounds of the array" on loading an XSLM file | Bug |
CELLSNET-58685 | Gap Missing when using arrays of string in template | 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.
Adds three methods in CellsHelper class.
Specifies the folder for temporary files that may be used as data cache for memory performance consideration.
CellsHelper_GetCacheFolder() (string, error)
CellsHelper_SetCacheFolder(cache string) error
Add the enumeration item MemorySetting::FileCache.
Specifies to use temporary file as cache for cells data model.
Adds two methods in Cells class.
Indicates whether all columns are hidden by default.
(instance *Cells) IsDefaultColumnHidden() (bool, error)
(instance *Cells) SetIsDefaultColumnHidden(value bool) error
Adds two methods in MarkdownSaveOptions class.
Indicates whether to calculate formulas before saving markdown file.
(instance *MarkdownSaveOptions) GetCalculateFormula() (bool, error)
(instance *MarkdownSaveOptions) SetCalculateFormula(value bool) error
Adds four methods in ShapePath class.
Gets the width of this path in unit of pixels.
(instance *ShapePath) GetWidthPixel() (int32, error)
(instance *ShapePath) SetWidthPixel(value int32) error
Gets the height of this path in unit of pixels.
(instance *ShapePath) GetHeightPixel() (int32, error)
(instance *ShapePath) SetHeightPixel(value int32) error
Aspose.Cells for Go via C++ v25.6.0
This page contains release notes for Aspose.Cells for Go via C++ v25.6.0.
Key | Summary | Category |
---|---|---|
CELLSGO-161 | Optimize Input Address Parameter Validation. | Improvement |
CELLSNET-58258 | Support embedding fonts while rendering to Pcl | New Feature |
CELLSNET-58382 | Supports exporting hyperlink to Numbers | New Feature |
CELLSNET-58552 | Supports exporting print settings to Numbers | New Feature |
CELLSNET-58393 | Merge image resource in the assembly | Enhancement |
CELLSNET-58524 | Support to export display string of richvalue while rendering to pdf | Enhancement |
CELLSNET-58510 | Support to choose the sheet reference of cloned pivottable(references to cloned sheet or source sheet) when coping worksheet | Enhancement |
CELLSNET-58351 | Shape to image error when converting file to pdf | Bug |
CELLSNET-58392 | Comment arrow position error when saving file to pdf | Bug |
CELLSNET-58410 | The program hangs when converting file to pdf | Bug |
CELLSNET-58316 | The program hangs on CalculateFormula and RefreshDynamicArrayFormulas | Bug |
CELLSNET-58331 | Calculating formula causes some #REF values that are different from ms excel | Bug |
CELLSNET-58347 | Formulas using TOCOL, SEQUENCE, and COUNTA produce a "#NA" error when evaluated/calculated | Bug |
CELLSNET-58369 | Workbook.HasCustomFunction failed to detect some custom functions | Bug |
CELLSNET-58373 | Cell.IsErrorValue returned false for new errors of ms excel such as #SPILL! | Bug |
CELLSNET-58380 | Cells not getting calculated using Aspose.Cells 25.4, but they are calculated correctly in 24.7 | Bug |
CELLSNET-58389 | Placeholder of "${SplitPartPrefix}" does not work for LowCodeSaveOptionsProviderOfPlaceHolders | Bug |
CELLSNET-58229 | Pink box position error when saving file to svg | Bug |
CELLSNET-58230 | Black text in bracket and pink box mixed together when saving file to svg | Bug |
CELLSNET-58231 | White text is not in pink box when saving file to svg | Bug |
CELLSNET-58232 | The positions of black text in bracket and white text in pink box are incorrect when saving file to svg | Bug |
CELLSNET-58272 | Contents of chart moved to the right when rendering chart to image | Bug |
CELLSNET-58273 | Arrow graphic size and position error when rendering chart to image | Bug |
CELLSNET-58306 | The values of the X-axis change when converting file to pdf | Bug |
CELLSNET-58312 | Texts and shapes in the chart are slightly smaller in the image Aspose.Cells captures | Bug |
CELLSNET-58313 | Chart title cut off in EMF export | Bug |
CELLSNET-58367 | Chart/Picture to image Error when rendering XLSX worksheet to PNG | Bug |
CELLSNET-58386 | Positions of labels and text box in chart are rendered differently when comparing with ms excel | Bug |
CELLSNET-58390 | Datalabels YPixel not set well | Bug |
CELLSNET-58403 | Labels in charts are positioned incorrectly when Aspose.Cells renders the chart as image | Bug |
CELLSNET-58492 | The title of column chart contains line breaks when converting file to xps | Bug |
CELLSNET-58434 | The result file cannot be displayed when converting the file to XPS | Bug |
CELLSNET-58491 | The number is displayed as # when converting file to xps | Bug |
CELLSNET-58388 | Data alignment error when converting file to html | Bug |
CELLSNET-58442 | HTML is not rendered properly after setting Cell.HtmlString | Bug |
CELLSNET-58353 | Calculated items are not added after calling PivotField.AddCalculatedItem method | Bug |
CELLSNET-58377 | Copying an XLSX file with structured references throws a NullReferenceException | Bug |
CELLSNET-58400 | Gradient fill style is missing when converting range to json | Bug |
CELLSNET-58404 | Json format error when converting range to json | Bug |
CELLSNET-58430 | Excel workbook saved as .docx having issues with table formatting and borders | Bug |
CELLSNET-58443 | Filters are changed after refreshing pivot tables | Bug |
CELLSNET-58444 | The decrease in column width causes the date to be shown as "#####" after refreshing pivot table | Bug |
CELLSNET-58455 | The number of bytes being read after opening the workbook is different between 24.7.0 and 25.5.0 | Bug |
CELLSNET-58468 | Wrong border color for merged cells | Bug |
CELLSNET-58473 | Slicer content is lost when converting file to xps | Bug |
CELLSNET-58474 | The timeline is inconsistent with excel when converting file to xps | Bug |
CELLSNET-58481 | The content is cleared after calling AutoFilter.RemoveFilter method | Bug |
CELLSNET-58535 | Font.DoubleSize = 6.5 is rounded to 6 in both memory and output | Bug |
CELLSNET-58352 | CalculateFormula throws System.NullReferenceException | Exception |
CELLSNET-58465 | CellsException(You want to put a string longer than 32K to Cell A1) occurs when converting file to xlsx | Exception |
CELLSNET-58354 | ArgumentOutOfRangeException occurs when calling PivotField.Ungroup method | Exception |
CELLSNET-58498 | Regression: NullReferenceException when calling Worksheet.RefreshPivotTables() | 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 Go via C++. If you have concerns about any change listed, please raise it on the Aspose.Cells support forum.
Adds two methods in PclSaveOptions class.
Indicates whether to embed font into the output Pcl file. The default value is true.
GetEmbedFont() (bool, error)
SetEmbedFont(value bool) error
Adds CustomRenderSettings class.
Represents custom settings during rendering.
Adds the same set of methods to class PaginatedSaveOptions and class ImageOrPrintOptions respectively.
Gets or sets custom settings during rendering.
GetCustomRenderSettings() (*CustomRenderSettings, error)
SetCustomRenderSettings(value *CustomRenderSettings) error
Adds one method in Workbook class.
Merges named styles from other workbook.
MergeNamedStyles(source *Workbook) error
Adds and deprecates some methods in Timeline class.
Gets the shape of the Timeline.
Add:
GetShape() (*TimelineShape, error)
Deprecate:
GetLeftPixel() (int , error)
SetLeftPixel(value int) error
GetTopPixel() (int , error)
SetTopPixel(value int) error
GetWidthPixel() (int , error)
SetWidthPixel(value int) error
GetHeightPixel() (int , error)
SetHeightPixel(value int) error
Adds one method in PivotGlobalizationSettings class.
Gets the localized text of "All Periods" for rendering the timeline.
GetTextOfAllPeriods() (string, error)
Adds and deprecates some methods in Slicer class.
Gets the shape of slicer.
Add:
GetShape() (*SlicerShape, error)
Deprecate:
GetLeftPixel() (int, error)
SetLeftPixel(value int) error
GetTopPixel() (int, error)
SetTopPixel(value int) error
GetWidth() (double, error)
SetWidth(value double) error
GetWidthPixel() (int, error)
SetWidthPixel(value int) error
GetHeight() (double, error)
SetHeight(value double) error
GetHeightPixel() (int, error)
SetHeightPixel(value int) error
Adds two methods in JsonSaveOptions class.
Indicates whether to export styles collectively or individually to each cell.
GetExportStylePool() (bool, error)
SetExportStylePool(value bool) error
Adds and deprecates some methods in DocxSaveOptions class.
Save all drawing objecgts as editable shapes in word file.So you can edit them in Word.
Add:
GetSaveAsEditableShapes() (bool, error)
SetSaveAsEditableShapes(value bool) error
Deprecate:
GetSaveAsEditableShaps() (bool, error)
void SetSaveAsEditableShaps(bool value)
Aspose.Cells for Go via C++ v25.5.0
This page contains release notes for Aspose.Cells for Go via C++ v25.5.0
Complete list of issues and enhancements covered in this Release
Key | Summary | Category |
---|---|---|
CELLSNET-58220 | Support exporting images when saving to Markdown format | New Feature |
CELLSNET-58241 | Support camera feature of range | New Feature |
CELLSNET-58150 | Supports exporting text box to Numbers | New Feature |
CELLSNET-58210 | Supports exporting conditional formatting to Numbers | New Feature |
CELLSNET-58121 | Enhance copying slicers from other workbook | Enhancement |
CELLSNET-58222 | Support exporting embedded image to docx | Enhancement |
CELLSNET-58223 | Exporting entity data to docx | Enhancement |
CELLSNET-58169 | Some shapes under the column Marker have an underline/bottom border | Bug |
CELLSNET-58173 | The callouts are not properly aligned when converting file to pdf | Bug |
CELLSNET-58238 | Shapes in XLS files are not rendered properly when converting to XPS | Bug |
CELLSNET-58052 | Filter does not work as expected | Bug |
CELLSNET-58148 | Negative numbers get generated with the wrong symbol | Bug |
CELLSNET-57953 | The discrepancy in the spacing between the text and the arrow between image and Excel | Bug |
CELLSNET-57980 | Rectangles and red texts are more on top when printed by Aspose then in original | Bug |
CELLSNET-57981 | Legend texts are displayed diagonally in Excel but printed horizontally in Aspose. | Bug |
CELLSNET-58060 | Display units not showing up for some generated images | Bug |
CELLSNET-58108 | Excel chart has misaligned shape in the output image | Bug |
CELLSNET-58123 | Missing text in labels when converting pivot chart to image | Bug |
CELLSNET-58168 | The shapes that overlap with the x-axis and y-axis are somehow behind the axis | Bug |
CELLSNET-58180 | The font kerning is different from letter to letter. | Bug |
CELLSNET-58198 | Rendered chart is distorted with several defects in the output image(SVG) | Bug |
CELLSNET-58208 | Label placements for charts are off when rendering sheet to image | Bug |
CELLSNET-58094 | Underlines are breaking in texts or titles when rendering sheet to image | Bug |
CELLSNET-58138 | Line weight on images captured from Excel is not the same as if it was copied on PC | Bug |
CELLSNET-58163 | Paging is inconsistent with excel when converting file to pdf | Bug |
CELLSNET-58197 | Incorrect location of image in spreadsheet | Bug |
CELLSNET-58227 | HTML file data loss when setting the print area to pivot table range | Bug |
CELLSNET-58268 | Incorrect HTML is saved by newer Aspose.Cells version | Bug |
CELLSNET-58247 | Assigning formulas to Table corrupts Excel | Bug |
CELLSNET-58262 | Support obtaining the first data row of a column | Bug |
CELLSNET-58263 | Support clearing comments within the range | Bug |
CELLSNET-58264 | Support clearing hyperlinks within the range | Bug |
CELLSNET-58307 | The original data is still retained after moving the pivot table | Bug |
CELLSNET-58315 | ListObject with calculated column creates invalid Excel file | Bug |
CELLSNET-58345 | The result file crashes after resaving excel file | Bug |
CELLSNET-58235 | NullReferenceException when calculating user provided template files | Exception |
CELLSNET-58219 | NullReferenceException caused by Cell.GetValidationValue() | Exception |
CELLSNET-58376 | Excel Table Missing Column in HTML output | 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.
Adds one method in Cells.
Gets the first data row in the column.
func (instance *Cells) GetFirstDataRow(column int32) (int32, error)
Adds one method in PictureCollection.
Takes a photo of the range.
func (instance *PictureCollection) Camera(row int32, column int32, range_ string) (int32, error)
Adds one method in ListColumn.
Indicates whether the formula of list column is an array formula.
func (instance *ListColumn) IsArrayFormula() (bool, error)
Adds five methods in Range.
Clear data of the range.
func (instance *Range) Clear()
func (instance *Range) ClearContents() error
func (instance *Range) ClearFormats() error
func (instance *Range) ClearComments() error
func (instance *Range) ClearHyperlinks(clearformat bool) error
Adds two methods in PaginatedSaveOptions.
Gets or sets gridline color while rendering, it will ignore the gridline color settings in the source file.
func (instance *PaginatedSaveOptions) GetGridlineColor() (*Color, error)
func (instance *PaginatedSaveOptions) SetGridlineColor(value*Color) error
Adds three methods in MarkdownSaveOptions.
Get the ImageOrPrintOptions object before exporting.
func (instance *MarkdownSaveOptions) GetImageOptions() (*ImageOrPrintOptions, error)
Specifies whether images are saved in Base64 format to Markdown.
func (instance *MarkdownSaveOptions) GetExportImagesAsBase64() (bool, error)
func (instance *MarkdownSaveOptions) SetExportImagesAsBase64(value bool) error
Aspose.Cells for Go via C++ v25.4.0
We are pleased to announce the release of Aspose.Cells for Go via C++ v25.4.0 with the following improvements
Complete list of issues and enhancements covered in this Release
Summary | Category |
---|---|
Crash in CalculateFormula() if the workbook has a data table | Bug |
Unexpected Numeric Output Instead of #NUM Error | Bug |
Rendering geometry causes crash | Bug |
Save to pptx exception | Bug |
Support to save specified sheets to html | New Feature |
Support exporting editable charts to docx file. | New Feature |
Support reading and writing sensitivity label | New Feature |
Support exporting hidden rows and columns to Numbers | New Feature |
Support exporting fill settings of cells to Numbers | New Feature |
Performance degradation | Enhancement |
Support exporting multi-level category data of chart to word fils | Enhancement |
Support exporting date axis and date value of chart to word file | Enhancement |
Text on shape displaced when converted to Image | Bug |
Text boxes may collapse when converting to PDF. | Bug |
The text originally columned inside the text box is converted into a single column format in the PDF | Bug |
Text shifts in Call Out Box when converting from xlsx to PDF | Bug |
The position and shape of word art are different with excel when saving file to pdf | Bug |
The issue of images shifting during the conversion of the Excel file to PDF format | Bug |
Excel file (containing an image object) gets corrupted on loading and saving | Bug |
Rows covered by images are deleted when calling Cells.DeleteBlankRows() | Bug |
CalculateFormula() method takes twice as long between v24.x and v25.x | Bug |
Issue with full recalculation of the workbook formulas when calculation chain is enabled | Bug |
Function chain of TRANSPOSE(CHOOSEROWS()) was calculated incorrectly for dynamic array formula | Bug |
Aspose.Cells formula calculation engine returns "#VALUE!" error where as Excel does not | Bug |
Certain formulas are evaluated as "#ZAHL!" when calculating formulas | Bug |
SORT function was calculated as #VALUE! when providing sort_order without specified sort_index | Bug |
VLOOKUP function returns unexpected result after calling the formula calculation | Bug |
Labels moved for small proportions in Pie chart | Bug |
Different fonts in charts in sheet to image conversion | Bug |
The top value of the first bar chart on the right has been cropped when converting chart to emf | Bug |
Horizontal and vertical labels are garbled when converting chart to image | Bug |
Certain plottings in each quadrant is pointing the wrong way when converting chart to image | Bug |
Fix missing labels in Bar chart | Bug |
Optimize the style of the line arrow | Bug |
Majority of the vertical line to the right of this bar graph is missing | Bug |
Solve the SoftEdge rendering issue of ChartArea | Bug |
The dashed graphic is abnormal when converting to xps | Bug |
Gigantic file size when saving Workbook as PDF | Bug |
Slight top alignment for Excel EMF | Bug |
HTML is not rendered properly in result file after setting Cell.HtmlString property | Bug |
A column has different (larger/extended) width in Excel to HTML conversion | Bug |
Copying column formula creates a corrupted excel file | Bug |
Invalid rows/columns grand totals of pivot table in xls file | Bug |
The workbook opens in Protected View after re-saving | Bug |
The result file crashes after adding spark line | Bug |
Data type error when exporting data using Cells.ExportDataTable method | Bug |
The xlsx file generated by CellsHelper_MergeFiles() for two xls files cannot be opened using Excel | Bug |
Scaling of logo in header changes | Bug |
Cannot import hidden columns from Numbers | Bug |
Chart/Picture to image Error when saving file to pdf | Exception |
NullReferenceException for CellsHelper.MergeFiles when merging two xls files | Exception |
ArgumentException occurs when refreshing dynamic array formulas | Exception |
Exception "Item has already been added..." while setting/adding HTML string/content in cell | Exception |
Exception while reading PowerQuery - Index was outside the bounds of the array | Exception |
UngroupRows throws System.NullReferenceException | Exception |
worksheet.MoveTo throws System.ArgumentException | Exception |
Aspose.Cells for Go via C++ v25.3.0
We are pleased to announce the release of Aspose.Cells for Go via C++ v25.3.0 with the following improvements
The full list of issues covering all changes in this release:
ID | Summary | Category |
---|---|---|
53397 | Added conversion for inheritance relationships. | Improvement |
53620 | Optimized conversion of basic Go data types. | Improvement |
Aspose.Cells for Go via C++ v25.2.0
We are pleased to announce the release of Aspose.Cells for Go via C++ v25.2.0 with the following improvements
Full list of issues covering all changes in this release:
ID | Summary | Category |
---|---|---|
52849 | Fixed the bug related to returning the correct bool value in the function. | Bug |
52859 | Support Enumerator feature. | New Feature |
53101 | Fix the structure initialization issue of Aspose.Cells CWrapper. | Bug |
53116 | Add new feature for cell setting null value. | Improvement |
53120 | Use native time instead of the Date class. | Improvement |
53122 | Add methods to get a specific color. | Improvement |
53137 | Optimize the inheritance relationship and supplement the methods of multi-level inheritance. | Improvement |
53225 | Update Aspose.Cells for Go via C++ 's license to MIT. | Improvement |
53226 | Fix the bug about setting Object two-dimensional arrays. | Bug |
53264 | Fix the constructor's vector object input parameter. | Bug |
53322 | Optimize the array object input parameters of the method. | Improvement |
53325 | Fix the copyright display issue. | Bug |
Aspose.Cells for Go via C++ v25.1.1
We are pleased to announce the release of Aspose.Cells for Go via C++ v25.1.1 with the following improvements
Full list of issues covering all changes in this release:
ID | Summary | Category |
---|---|---|
52849 | Fixed the bug related to returning the correct Boolean value in the function. | Bug |
Aspose.Cells for Go via C++ v25.1.0
We are pleased to announce the release of Aspose.Cells for Go via C++ v25.1.0 with the following improvements
Full list of issues covering all changes in this release:
ID | Summary | Category |
---|---|---|
52717 | Added support for creating a new workbook from file data. | New Feature |
52718 | Introduced APIs for operations on array data. | New Feature |
Aspose.Cells for Go via C++ v24.12.2
Add the RPATH of AsposeCellsCWrapper for Linux.