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