2.2.1.3. Variable values - functions

Variable values: All keys that are structured according to the scheme "Name=?" are evaluated at runtime. The instruction is stored in VB syntax.

The following example shows that the value of the "FileName" key is assembled via a VB command.

FileName=?GetObject("iface.calcnameservice").start(0).Format("<GENNAME>").Value()

In the following some important functions are explained by which you can adjust the commands as desired.

"Assembly" of individual functions:

These are "assembled" separately with a dot ( . ).

Example:

The RepSeq(a1,b1) function is to be inserted into an existing key:

Before:

poolpath(isCreaOptNotSet)=?GetObject("iface.calcnameservice").start(0).
Format("$CADENAS_DATA/pool/cadname").value()

After:

poolpath(isCreaOptNotSet)=?GetObject("iface.calcnameservice").start(0).
Format("$CADENAS_DATA/pool/cadname").RepSeq("NORM9,NORM8").value()