A property that gets and sets if a hatch pattern should be shown on the section.
# Get the value of the property.propertyValue = sectionAnalysis_var.isHatchShown# Set the value of the property.sectionAnalysis_var.isHatchShown = propertyValue
#include <Fusion/Fusion/SectionAnalysis.h>// Get the value of the property.boolean propertyValue = sectionAnalysis_var->isHatchShown();// Set the value of the property, where value_var is a boolean.bool returnValue = sectionAnalysis_var->isHatchShown(value_var);