ScriptInput.version Property

Parent Object: ScriptInput
Defined in namespace "adsk::core" and the header file is <Core/Application/ScriptInput.h>

Description

The version of the add-in that is displayed in the "Scripts and Add-Ins" dialog. This defaults to an empty string.

Syntax

"scriptInput_var" is a variable referencing a ScriptInput object.

# Get the value of the property.
propertyValue = scriptInput_var.version

# Set the value of the property.
scriptInput_var.version = propertyValue
"scriptInput_var" is a variable referencing a ScriptInput object.
#include <Core/Application/ScriptInput.h>

// Get the value of the property.
string propertyValue = scriptInput_var->version();

// Set the value of the property, where value_var is a string.
bool returnValue = scriptInput_var->version(value_var);

Property Value

This is a read/write property whose value is a string.

Version

Introduced in version October 2023