GetVariables Text Query Command

Gets the {...} .

count = GetVariables (&names/.0.1... [DOCUMENT document | CHAPTER document:... | WINDOW document-window])


Parameters:


Results:


Notes:


See Also:
DeleteVariable, GetVariables, GetVariableValue, InsertName, NewVariable, SetVariableName, SetVariableValue


Examples:
Python:


ARexx:

Applescript:

 

GetVariables  Command Definition  url:PGScmd/getvariables
  created:2006-05-04 16:51:28   last updated:2006-06-03 10:41:00
  Copyright © 1985-2024 GrasshopperLLC. All Rights Reserved.

User Contributed Comments For GetVariables
Tim Doty wrote...2006-05-27 04:11:26

GetVariables('stem')
{'.error': 1, '.result': 0, 'stem': []}
NewVariable('startedborder', 'true')
{'.error': 1, '.result': 0}
GetVariables('stem')
{'.error': 1, '.result': 1, 'stem': ['startedborder']}
SetVariableName('completedborder', 'startedborder')
{'.error': 1, '.result': 0}
GetVariables('stem')
{'.error': 1, '.result': 1, 'stem': ['completedborder']}
SetVariableValue('false', 'variable', 'completedborder')
{'.error': 1, '.result': 0}
GetVariables('stem')
{'.error': 1, '.result': 1, 'stem': ['completedborder']}
DeleteVariable('completedborder')
{'.error': 1, '.result': 0}
GetVariables('stem')
{'.error': 1, '.result': 0, 'stem': []}

User Contributed Comments For GetVariables