Returns and sets the string that defines the thread designation.
# Get the value of the property.propertyValue = threadInfo_var.threadDesignation# Set the value of the property.threadInfo_var.threadDesignation = propertyValue
#include <Fusion/Features/ThreadInfo.h>// Get the value of the property.string propertyValue = threadInfo_var->threadDesignation();// Set the value of the property, where value_var is a string.bool returnValue = threadInfo_var->threadDesignation(value_var);