vfoGRUpdateTunnelOptions
vfoGRUpdateTunnelOptions ( ) =>l_optionTypes/ nil
Description
Returns the list of supported options for FGR tunnel shape types. VFO infrastructure uses options returned by this function and checks with the existing options. The first value returned by this function is selected by default when the Create Tunnel in Fluid Object form opens. If the vfoGRUpdateTunnelOptions function is not defined, returns nil, or any invalid option is returned, all tunnel options are displayed on the Create Tunnel in Fluid Object form.
Arguments
Value Returned
Example
To allow only path and rectangle type tunnels:
;;Define procedure which will return supported options list as
procedure( vfoGRUpdateTunnelOptions()
list(“Path” “Rectangle”)
)
Return to top