Specifies if a script or add-in is to be created. A value of true indicates an add-in will be created.
# Get the value of the property.propertyValue = scriptInput_var.isAddIn# Set the value of the property.scriptInput_var.isAddIn = propertyValue
#include <Core/Application/ScriptInput.h>// Get the value of the property.boolean propertyValue = scriptInput_var->isAddIn();// Set the value of the property, where value_var is a boolean.bool returnValue = scriptInput_var->isAddIn(value_var);