OperationManager
Many recalculating analysis tools, such as the Statistics on Columns dialog, the Nonlinear Curve Fitting dialog, etc.,are the internal Origin Operations.
The OperationManager class is used to access the methods and properties of the recalculating analysis tools.
EX1
//The following function is used to get all operations objects and print out the operation names. Void OperationManager_GetCount_Ex1() { OperationManager opManager; opManager = Project.Operations; int count = opManager.GetCount(); for(int index=0; index < count; index++) { OperationBase& op = opManager.GetOperation(index); string strName = op.GetName(); out_str(strName); } }
origin.h