Get or set the value of the parameter.
# Get the value of the property.propertyValue = integerParameterValue_var.value# Set the value of the property.integerParameterValue_var.value = propertyValue
#include <Cam/Operations/IntegerParameterValue.h>// Get the value of the property.integer propertyValue = integerParameterValue_var->value();// Set the value of the property, where value_var is an integer.bool returnValue = integerParameterValue_var->value(value_var);