Gets and sets the scale of the image. This defaults to 1.0, which is full-scale.
# Get the value of the property.propertyValue = imageCommandInput_var.scaleFactor# Set the value of the property.imageCommandInput_var.scaleFactor = propertyValue
#include <Core/UserInterface/ImageCommandInput.h>// Get the value of the property.double propertyValue = imageCommandInput_var->scaleFactor();// Set the value of the property, where value_var is a double.bool returnValue = imageCommandInput_var->scaleFactor(value_var);