公共 API Aspose.Cells 8.5.0 的变化
添加的 API
更改了 ICustomFunction.CalculateCustomFunction 参数
如果自定义函数的一个参数是单元格引用,在旧版本 Aspose.Cells 中,API 用于将单元格引用转换为一个单元格值或引用区域中所有单元格值的对象数组。然而,对于许多函数和用户来说,不需要引用区域中所有单元格的单元格值数组,他们只需要一个单元格对应于公式的位置,或者只需要引用本身而不是单元格值或值数组.在某些情况下,获取所有单元格值甚至会增加循环引用错误的风险。
为支持此类要求,Aspose.Cells for .NET 8.5.0 已将参数值更改为引用区域的“paramsList”。从v8.5.0开始,API只是在对应参数为引用或其计算结果为引用时,将ReferredArea对象放入“paramsList”。如果您需要引用本身,那么您可以直接使用 ReferredArea。如果需要从引用中获取与公式位置对应的单个单元格值,可以使用 ReferredArea.GetValue(rowOffset, int colOffset) 方法。如果您需要整个区域的单元格值数组,则可以使用 ReferredArea.GetValues 方法。
现在,由于 Aspose.Cells for .NET 8.5.0 在“paramsList”中提供了 ReferredArea,因此不再需要“contextObjects”中的 ReferredAreaCollection(在旧版本中,它始终无法为自定义函数的参数提供一对一的映射),所以这个版本现在也从“contextObjects”中删除了它。
当您需要引用参数的值时,此更改需要稍微更改 ICustomFunction 的实现代码。
旧实现
public object CalculateCustomFunction(string functionName, ArrayList paramsList, ArrayList contextObjects)
{
...
object o = paramsList[i];
if (o is Array)
{
...
}
else if...
...
}
新实施
public object CalculateCustomFunction(string functionName, ArrayList paramsList, ArrayList contextObjects)
{
...
object o = paramsList[i];
if(o is ReferredArea) //fetch data from reference
{
ReferredArea ra = (ReferredArea)o;
if(ra.IsArea)
{
o = ra.GetValues();
}
else
{
o = ra.GetValue(0, 0);
}
}
if (o is Array)
{
...
}
else if...
...
}
添加了类 CalculationOptions
Aspose.Cells for .NET 8.5.0 公开了 CalculationOptions 类以增加公式计算引擎的灵活性和可扩展性。新添加的类具有以下属性。
- CalculationOptions.CalcStackSize:指定用于递归计算单元格的堆栈大小。 -1 指定计算将使用相应工作簿的WorkbookSettings.CalcStackSize。
- CalculationOptions.CustomFunction:使用自定义公式扩展公式计算引擎。
- CalculationOptions.IgnoreError:Boolean 类型值,表示在计算公式时是否隐藏错误,其中错误可能是由于不支持的函数、外部链接或其他原因造成的。
- CalculationOptions.PrecisionStrategy:CalculationPrecisionStrategy 类型值,指定计算精度的处理策略。
添加了枚举计算PrecisionStrategy
Aspose.Cells for .NET 8.5.0 公开了枚举 CalculationPrecisionStrategy 以增加公式计算引擎的灵活性以获得所需的结果。此枚举策略计算精度处理。由于IEEE 754 Floating-Point Arithmetic的精度问题,一些看似简单的公式可能无法计算出预期的结果,因此最新的API版本公开了以下字段以根据选择获得所需的结果。
- CalculationPrecisionStrategy.Decimal:尽可能使用小数作为操作数,从性能考虑来看效率最低。
- CalculationPrecisionStrategy.Round:计算结果按有效位四舍五入。
- CalculationPrecisionStrategy.None:没有应用任何策略,因此在计算过程中引擎使用原始双精度值作为操作数并直接返回结果。此选项效率最高,适用于大多数情况。
添加的方法以使用 CalculationOptions
随着 v8.5.0 的发布,Aspose.Cells API 添加了如下所列的 CalculateFormula 方法的重载版本。
- 工作簿.CalculateFormula(计算选项)
- Worksheet.CalculateFormula(CalculationOptions 选项,布尔递归)
- Cell.计算(计算选项)
添加了枚举字段 PasteType.RowHeights
Aspose.Cells API 提供了 PasteType.RowHeights 枚举字段,用于在复制范围时复制行高。将 PasteOptions.PasteType 属性设置为 ((PasteType.RowHeights}} 后,源范围内所有行的高度将被复制到目标范围。
C#
//Create workbook object
Workbook workbook = new Workbook();
//Source worksheet
Worksheet srcSheet = workbook.Worksheets[0];
//Add destination worksheet
Worksheet dstSheet = workbook.Worksheets.Add("Destination Sheet");
//Set the row height of the 4th row
//This row height will be copied to destination range
srcSheet.Cells.SetRowHeight(3, 50);
//Create source range to be copied
Range srcRange = srcSheet.Cells.CreateRange("A1:D10");
//Create destination range in destination worksheet
Range dstRange = dstSheet.Cells.CreateRange("A1:D10");
//PasteOptions, we want to copy row heights of source range to destination range
PasteOptions opts = new PasteOptions();
opts.PasteType = PasteType.RowHeights;
//Copy source range to destination range with paste options
dstRange.Copy(srcRange, opts);
//Write informative message in cell D4 of destination worksheet
dstSheet.Cells["D4"].PutValue("Row heights of source range copied to destination range");
//Save the workbook in xlsx format
workbook.Save("output.xlsx", SaveFormat.Xlsx);
添加了属性 SheetRender.PageScale
当您使用设置页面设置缩放时适合 n 页宽乘以 m 高选项,Microsoft Excel 计算页面设置比例因子。使用 Aspose.Cells for .NET 8.5.0 公开的 SheetRender.PageScale 属性可以实现相同的目的。此属性返回一个可以转换为百分比值的双精度值。例如,如果它返回 0.507968245,则表示比例因子为 51%。
C#
//Create workbook object
Workbook workbook = new Workbook();
//Access first worksheet
Worksheet worksheet = workbook.Worksheets[0];
//Put some data in these cells
worksheet.Cells["A4"].PutValue("Test");
worksheet.Cells["S4"].PutValue("Test");
//Set paper size
worksheet.PageSetup.PaperSize = PaperSizeType.PaperA4;
//Set fit to pages wide as 1
worksheet.PageSetup.FitToPagesWide = 1;
//Calculate page scale via sheet render
SheetRender sr = new SheetRender(worksheet, new ImageOrPrintOptions());
//Convert page scale double value to percentage
string strPageScale = sr.PageScale.ToString("0%");
//Write the page scale value
Console.WriteLine(strPageScale);
枚举 CellValueFormatStrategy 添加
Aspose.Cells for .NET 8.5.0 添加了一个新的枚举 CellValueFormatStrategy 来处理必须在应用或不应用格式的情况下提取单元格值的情况。枚举 CellValueFormatStrategy 具有以下字段。
- CellValueFormatStrategy.CellStyle:仅使用单元格的原始格式进行格式化。
- CellValueFormatStrategy.DisplayStyle:使用单元格的显示样式进行格式化。
- CellValueFormatStrategy.None:未格式化。
添加方法 Cell.GetStingValue
为了使用 CellValueFormatStrategy 枚举,v8.5.0 公开了 Cell.GetStingValue 方法,该方法可以接受 CellValueFormatStrategy 类型的参数并根据指定的选项返回值。
以下代码片段显示了如何使用新公开的 Cells.GetStingValue 方法。
C#
//Create workbook
Workbook workbook = new Workbook();
//Access first worksheet
Worksheet worksheet = workbook.Worksheets[0];
//Access cell A1
Cell cell = worksheet.Cells["A1"];
//Put value inside the cell
cell.PutValue(0.012345);
//Format the cell that it should display 0.01 instead of 0.012345
Style style = cell.GetStyle();
style.Number = 2;
cell.SetStyle(style);
//Get string value as Cell Style
string value = cell.GetStingValue(CellValueFormatStrategy.CellStyle);
Console.WriteLine(value);
//Get string value without any formatting
value = cell.GetStingValue(CellValueFormatStrategy.None);
Console.WriteLine(value);
已添加属性 ExportTableOptions.FormatStrategy
Aspose.Cells for .NET 8.5.0 已为希望将数据导出到带格式或不带格式的 DataTable 的用户公开了 ExportTableOptions.FormatStrategy 属性。此属性使用 CellValueFormatStrategy 枚举并根据指定选项导出数据。
以下代码解释了 ExportTableOptions.FormatStrategy 属性的使用。
C#
//Create workbook
Workbook workbook = new Workbook();
//Access first worksheet
Worksheet worksheet = workbook.Worksheets[0];
//Access cell A1
Cell cell = worksheet.Cells["A1"];
//Put value inside the cell
cell.PutValue(0.012345);
//Format the cell that it should display 0.01 instead of 0.012345
Style style = cell.GetStyle();
style.Number = 2;
cell.SetStyle(style);
//Print the cell values as it displays in excel
Console.WriteLine("Cell String Value: " + cell.StringValue);
//Print the cell value without any format
Console.WriteLine("Cell String Value without Format: " + cell.StringValueWithoutFormat);
//Export Data Table Options with FormatStrategy as CellStyle
ExportTableOptions opts = new ExportTableOptions();
opts.ExportAsString = true;
opts.FormatStrategy = CellValueFormatStrategy.CellStyle;
//Export Data Table
DataTable dt = worksheet.Cells.ExportDataTable(0, 0, 1, 1, opts);
//Print the value of very first cell
Console.WriteLine("Export Data Table with Format Strategy as Cell Style: " + dt.Rows[0][0].ToString());
//Export Data Table Options with FormatStrategy as None
opts.FormatStrategy = CellValueFormatStrategy.None;
dt = worksheet.Cells.ExportDataTable(0, 0, 1, 1, opts);
//Print the value of very first cell
Console.WriteLine("Export Data Table with Format Strategy as None: " + dt.Rows[0][0].ToString());