ワークブックの数式計算を中断またはキャンセルする

可能な使用シナリオ

Aspose.Cellsは、ワークブックの数式計算を中断またはキャンセルするためのAbstractCalculationMonitorクラスのinterrupt()メソッドを使用できます。これは、ワークブックの数式計算にかかる時間が長い場合に処理をキャンセルしたい場合に便利です。

ワークブックの数式計算を中断またはキャンセルする

次のサンプルコードはAbstractCalculationMonitor.interrupt()メソッドを実装しています。このメソッド内で、行と列のインデックスパラメータを使用してセル名を見つけます。セル名がB8の場合、AbstractCalculationMonitor.interrupt()メソッドを呼び出して計算プロセスを中断します。AbstractCalculationMonitorクラスの具象クラスが実装されると、そのインスタンスがAbstractCalculationMonitor.interrupt()プロパティに割り当てられます。最後に、Workbook.calculateFormula()をパラメータとして渡してCalculationOptionsを呼び出します。

サンプルコード

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
//Implement calculation monitor class
class clsCalculationMonitor extends AbstractCalculationMonitor
{
public void beforeCalculate(int sheetIndex, int rowIndex, int colIndex)
{
//Find the cell name
String cellName = CellsHelper.cellIndexToName(rowIndex, colIndex);
//Print the sheet, row and column index as well as cell name
System.out.println(sheetIndex + "----" + rowIndex + "----" + colIndex + "----" + cellName);
//If cell name is B8, interrupt/cancel the formula calculation
if (cellName.equals("B8") == true)
{
this.interrupt("Interrupt/Cancel the formula calculation");
}//if
}//beforeCalculate
}//clsCalculationMonitor
//---------------------------------------------------------
//---------------------------------------------------------
public void Run() throws Exception
{
//Load the sample Excel file
Workbook wb = new Workbook(srcDir + "sampleCalculationMonitor.xlsx");
//Create calculation options and assign instance of calculation monitor class
CalculationOptions opts = new CalculationOptions();
opts.setCalculationMonitor(new clsCalculationMonitor());
//Calculate formula with calculation options
wb.calculateFormula(opts);
}

コンソール出力

0----1----3----D2

0----4----6----G5

0----7----1----B8