No problem... Actually, I don't think anyone has actually asked that
question before ;)
Unfortunately, there's no way currently to obtain the exact parameter that's
being passed into your function. At this time, the equation engine simply
evaluates the expression in the argument position and sends in the resultant
value to the function. The current technique is to simply pass in the
required information as follows:
Functions.MyFunction( param, GetUpdateRate(param), GetUnits(param) )
It's not pretty, but it should work. Think of the custom function being more
similar to C that say C++. At this point in time, your not able to pass
"classes" into the function, so you'll have to send the actual value of the
desired input.
Let me know if you have any further questions,
Jim
LOL! ;)
No problem,
Jim