Aspose.Cells 8.7.2中的公共API更改

添加的 API

扩展了默认计算引擎

Aspose.Cells API具有强大的计算引擎,可以计算几乎所有的Microsoft Excel函数。此外,Aspose.Cells API现在允许扩展默认计算引擎,以满足任何应用程序的定制计算要求。

通过Aspose.Cells for .NET 8.7.2发布了以下API。

  1. AbstractCalculationEngine类
  2. CalculationData类
  3. CalculationOptions.CustomEngine属性

以下是简单的使用场景。

C#

 public class MyEngine : AbstractCalculationEngine

{

    public override void Calculate(CalculationData data)

    {

        string funcName = data.FunctionName.ToUpper();

        if ("MYFUNC".Equals(funcName))

        {

            //do calculation for MYFUNC here

            int count = data.ParamCount;

            object res = null;

            for (int i = 0; i < count; i++)

            {

                object pv = data.GetParamValue(i);

                if (pv is ReferredArea)

                {

                    ReferredArea ra = (ReferredArea)pv;

                    pv = ra.GetValue(0, 0);

                }

                //process the parameter here

                //res = ...;

            }

            data.CalculatedValue = res;

        }

    }

}

为TextBoxCollection添加了重载的索引器

Aspose.Cells for .NET 8.7.2已公开了TextBoxCollection类的重载索引,以便使用其名称作为字符串来访问TextBox实例。

简单的使用场景如下。

C#

 //Create an instance of Workbook

Workbook workbook = new Workbook();

//Access the first Worksheet from the collection

Worksheet sheet = workbook.Worksheets[0];

//Add a TextBox to the collection

int idx = sheet.TextBoxes.Add(10, 10, 10, 10);

//Access the TextBox using its index

TextBox box = sheet.TextBoxes[idx];

//Set the name for the TextBox

box.Name = "MyTextBox";

//Access the same TextBox via its name

box = sheet.TextBoxes["MyTextBox"];

为GridWeb添加了OnAfterColumnFilter事件。

Aspose.Cells.GridWeb for .NET 8.7.2已经公开了OnAfterColumnFilter事件,该事件用作通过Aspose.Cells.GridWeb UI进行的筛选机制的回调。正如名称所示,该事件在应用列过滤后触发,并可用于获取筛选信息,例如应用筛选的列索引和所选筛选值。

简单的使用场景如下。

C#

 protected void GridWeb1_AfterColumnFilter(object sender, Aspose.Cells.GridWeb.RowColumnEventArgs e)

{

    string msg = "Column index: " + (e.Num) + ", Filtered Value:" + e.Argument;

}