WorksheetStartEvaluation Method

Note: This API is now obsolete.

Starts evaluation of the worksheet.

  Note

This method exits immediately, it does not wait until evaluation is finished or stopped in debugger.

Definition

Namespace: SMath.Controls
Assembly: SMath.Controls (in SMath.Controls.dll) Version: 1.73.9126.0
C#
[ObsoleteAttribute("This method will be removed soon. Use RegionEvaluable.RequestEvaluation() instead")]
public void StartEvaluation(
	int startIndex = 0,
	int endIndex = 2147483647,
	bool withTests = true,
	bool withDebug = false
)

Parameters

startIndex  Int32  (Optional)
Start index of the Region to perform evaluation for.
endIndex  Int32  (Optional)
End index of the Region to perform evaluation for.
withTests  Boolean  (Optional)
Includes evaluation of the dependent Regions below (applicable unless endIndex includes the last Region).
withDebug  Boolean  (Optional)
If then evaluation will be stopped later in debugger on the first possible operation.

See Also