Spire.XLS 14.7.2 supports obtaining custom properties of worksheets

2024-07-15 03:38:45

We're pleased to announce the release of Spire.XLS 14.7.2. This version supports obtaining the custom properties of a worksheet and the original document name of the embedded OLE object. What’s more, the issues that occurred when converting Excel to image and PDF has been successfully resolved. More details are shown below.

Here is a list of changes made in this release

Category ID Description
New feature SPIREXLS-5274 Supports obtaining custom properties of worksheets.
Workbook workbook = new Workbook ();
workbook.LoadFromFile("funds-test.xlsx");
ICustomPropertiesCollection customProperties = workbook.Worksheets[0].CustomProperties;
for (int i = 0; i < customProperties.Count; i++)
{     
XlsCustomProperty xcp = customProperties[i];     
string name = xcp.Name;    
 string value = xcp.Value; 
}
New feature SPIREXLS-5306 Supports obtaining the original document name of the embedded OLE object.
ole.OleOriginName
Bug SPIREXLS-5271 Fixes the issue that the cell data was inaccurate when converting Excel to images.
Bug SPIREXLS-5298 Fixes the issue that the cell contents were lost when converting Excel to PDF.
Bug SPIREXLS-5304 Fixes the issue that the row height was incorrect when converting Excel to PDF.
Bug SPIREXLS-5309 Fixes the issue that the pagination was incorrect when converting Excel to PDF.
Bug SPIREXLS-5320 Fixes the issue that the first 10 data entries were incorrect after adding a "FilterTop10" filter in a worksheet.
Click the link to download Spire.XLS 14.7.2:
More information of Spire.XLS new release or hotfix: