Indicates if this geometry is "fixed".
# Get the value of the property.propertyValue = sketchText_var.isFixed# Set the value of the property.sketchText_var.isFixed = propertyValue
#include <Fusion/Sketch/SketchText.h>// Get the value of the property.boolean propertyValue = sketchText_var->isFixed();// Set the value of the property, where value_var is a boolean.bool returnValue = sketchText_var->isFixed(value_var);