Regular API function

simGetStringNamedParam / sim.getStringNamedParam

Description Deprecated. See sim.getNamedStringParam instead.
C/C++
synopsis
char* simGetStringNamedParam(const char* paramName,int* 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