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