GetOperation
Get an Operation with specified index from OperationManager.
OperationBase& GetOperation(int nIndex);
a valid operation wrapper that represent the internal operation object
//List all the operations in the project. //Before run this function, do some analysis operations, such as linear fit. void OperationManager_GetOperation_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); } }
OperationManager::FindOutgoingOperation
origin.h