Gets and sets the path for the output folder where the .cnc files will be located.
# Get the value of the property.propertyValue = postProcessInput_var.outputFolder# Set the value of the property.postProcessInput_var.outputFolder = propertyValue
#include <Cam/CAM/PostProcessInput.h>// Get the value of the property.string propertyValue = postProcessInput_var->outputFolder();// Set the value of the property, where value_var is a string.bool returnValue = postProcessInput_var->outputFolder(value_var);