vfoGRGetExtraArgument
vfoGRGetExtraArgument(
)
=> l_keyValuePair
Description
Retrieves the value of user-defined fields, that is, list of ‘key value’ pair set using the vfoGRSetExtraArgument SKILL function.
Arguments
Value Returned
Example
argList = vfoGRGetExtraArgument()
foreach(element argList
if(car(element) == "mdec" then
return("t")
else
return("nil")
)
)
Return to top