Regular API function

simGetStringNamedParam / sim.getStringNamedParam

Description Deprecated. See sim.getNamedStringParam instead.
C/C++
synopsis
simChar* simGetStringNamedParam(const simChar* paramName,simInt* paramLength)
C/C++
parameters
paramName: the key or name of the parameter
paramLength: the size of the parameter
C/C++
return value
nullptr if operation was not successful or if such a parameter does not exist. Otherwise the parameter. The user is in charge of releasing the returned buffer with simReleaseBuffer.
Lua synopsis string stringParam=sim.getStringNamedParam(string paramName)
Lua parameters
Similar to the C-function counterpart
Lua return values
Similar to the C-function counterpart