|
%vofd() Function |
|
|
The %vofd() function is resolved after the compilation of page is complete. Syntax: %vofd(compile-time-symbol)
Why we need it? It is possible that the variable you're referring is not yet created or assigned a value. In the example below the function %vof(../C/_abc) that is used in Element A will not return a value where as the function %vofd(../C/_abc) used in Element B will return 'xyz' since %vofd() will be processed after the compilation is complete.
|