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