Gets and sets if the text is flipped horizontally.
# Get the value of the property.propertyValue = sketchText_var.isHorizontalFlip# Set the value of the property.sketchText_var.isHorizontalFlip = propertyValue
#include <Fusion/Sketch/SketchText.h>// Get the value of the property.boolean propertyValue = sketchText_var->isHorizontalFlip();// Set the value of the property, where value_var is a boolean.bool returnValue = sketchText_var->isHorizontalFlip(value_var);