Gets and sets the height of the text in centimeters.
# Get the value of the property.propertyValue = sketchTextInput_var.height# Set the value of the property.sketchTextInput_var.height = propertyValue
#include <Fusion/Sketch/SketchTextInput.h>// Get the value of the property.double propertyValue = sketchTextInput_var->height();// Set the value of the property, where value_var is a double.bool returnValue = sketchTextInput_var->height(value_var);