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