|
<< Click to Display Table of Contents >> Navigation: 3. Script Language > AI - Artificial Intelligence Commands > AIC. - Artificial Intelligence Command > AIC Commands |
Short Name: gav
Get any variable
AIC_---Artificial-Intelligenc2(VarName)
Parameter |
Type |
Required |
Description |
VarName |
String |
Yes |
Name of the variable to retrieve |
Type |
Description |
Variant |
Returns the value of the specified variable |
·Allows dynamic access to internal variables
·Returns empty string if variable not found
·Useful for debugging and inspection
' Get value of internal variableDim value As Variantvalue = AIC_---Artificial-Intelligenc2("LastResponse")Print "Last response: " & value
Retrieves the value of an internal AIC variable by name.