Gets and sets the vendor name of the machine.
# Get the value of the property.propertyValue = machine_var.vendor# Set the value of the property.machine_var.vendor = propertyValue
#include <Cam/Machine/Machine.h>// Get the value of the property.string propertyValue = machine_var->vendor();// Set the value of the property, where value_var is a string.bool returnValue = machine_var->vendor(value_var);