NCProgramInput.operations Property

Parent Object: NCProgramInput
Defined in namespace "adsk::cam" and the header file is <Cam/NCProgram/NCProgramInput.h>

Description

Gets and sets the operations which will be included in the NC program. Valid input contains any number of operations, setups or folders. For setups and folders all child operations will be added. Operations will be post processed in setup order, with operations from the same setup grouped together. Setting the nc_program_orderByTool BooleanParameterValue on the parameters property to true will reorder operations across multiple setups to reduce the number of tool changes.

Syntax

"nCProgramInput_var" is a variable referencing a NCProgramInput object.

# Get the value of the property.
propertyValue = nCProgramInput_var.operations

# Set the value of the property.
nCProgramInput_var.operations = propertyValue
"nCProgramInput_var" is a variable referencing a NCProgramInput object.
#include <Cam/NCProgram/NCProgramInput.h>

// Get the value of the property.
std::vector<Ptr<OperationBase>> propertyValue = nCProgramInput_var->operations();

// Set the value of the property, where value_var is an OperationBase.
bool returnValue = nCProgramInput_var->operations(value_var);

Property Value

This is a read/write property whose value is an array of type OperationBase.

Samples

Name Description
Manufacturing Workflow API Sample Manufacturing Workflow API Sample

This sample script starts by creating a simple component which is then used to describe a milling workflow. It creates a setup, a few operations, pick some tools from a Fusion sample tool library using loops and queries and ends up post-processing the operations out using an NC Program.

Version

Introduced in version April 2023