【お知らせ】この部分は英語原文のみでの提供となります。何卒ご了承ください。
2.2.4.38.52 Project::Operations
Contents
ClassName
Project
AccessType
public
Name
Operations
Declaration
OperationManager Operations
Remark
Examples
//List all the operations in the project. //Before run this function, do some analysis operations, such as linear fit. void Project_Operations() { 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); } }
Description
Header to Include
origin.h