Variable

The Variable property sets or gets the value that is associated with a variable in the SetupNode object. You can use this property to identify objects (for example, pages) that require special processing when a variable contains a specific value.

Description

Important: VBScript only. Extended properties are not supported through the C# .NET Interop interface. Instead, use set_Variable or get_ Variable.

Syntax

VBScript
oSNO.Variable (VarName as String) as Variant

Type

Read and write

Arguments

VarName
Name of the variable (case sensitive)

Example

VBScript
Call objTotal.AddVariable ("Length", "10")
msgbox objTotal.Variable("Length")