The case-insensitive vendor specifies the vendor of the tool. The default empty vendor applies to all tools.
# Get the value of the property.propertyValue = toolQuery_var.vendor# Set the value of the property.toolQuery_var.vendor = propertyValue
#include <Cam/Tools/ToolQuery.h>// Get the value of the property.string propertyValue = toolQuery_var->vendor();// Set the value of the property, where value_var is a string.bool returnValue = toolQuery_var->vendor(value_var);