Vars - property of object PmWebDir
Description:
Access to keywords values. The property enables an access to the object of
Var type that represents one variable defined on the page
Keywords.
Syntax:
Vars(id As Variant) As Object
Calling:
Reading the value:
val = oWebDir.Vars(id).Value
Writing the value:
oWebDir.Vars(id).Value = val
Parameters:
id | (Variant) Specifies the variable either by its name (String data type, case sensitive text, for example "a1") or by index (zero-based index). |
---|
Note:
Property access for
read only.
The Var object includes information about the variable (value, name, index, etc.).
The Vars property (like Var object) is read only, it means that the object cannot be changed but for example it is possible to write into the Value of the Var object.