udfGetUgdData()
Return the value of a user global data.
Syntax
ugdData = udfGetUgdData( udfHd, ugd ) ;
Type
AcuSolve User-Defined Function Global
Parameters
- udfHd
- The opaque handle (pointer) which was passed to the user function.
- ugd (string)
- Name of the user global data variable.
Return Value
- ugdData (real)
- Value of the user global data.
Description
Real ugdData ;
...
ugdData = udfGetUgdData( udfHd, "nCols" ) ;
Errors
- This routine expects a valid udfHd.
- ugd must exist.