Gets and sets whether this line is defined as a centerline.
# Get the value of the property.propertyValue = sketchLine_var.isCenterLine# Set the value of the property.sketchLine_var.isCenterLine = propertyValue
#include <Fusion/Sketch/SketchLine.h>// Get the value of the property.boolean propertyValue = sketchLine_var->isCenterLine();// Set the value of the property, where value_var is a boolean.bool returnValue = sketchLine_var->isCenterLine(value_var);