Gets and sets the name of the contact set.
# Get the value of the property.propertyValue = contactSet_var.name# Set the value of the property.contactSet_var.name = propertyValue
#include <Fusion/Components/ContactSet.h>// Get the value of the property.string propertyValue = contactSet_var->name();// Set the value of the property, where value_var is a string.bool returnValue = contactSet_var->name(value_var);