Regular API
function
simGetObjectName
Description
Retrieves the name of an object based on its handle. See also
simSetObjectName
.
C synopsis
simChar* simGetObjectName(simInt objectHandle)
C parameters
objectHandle
: handle of the object
C return value
Name of the object if operation was successful, NULL otherwise. The user is in charge of destroying the returned buffer with
simReleaseBuffer
Lua synopsis
string objectName=simGetObjectName(number objectHandle)
Lua parameters
Same as C-function
Lua return values
Same as C-function (but nil instead of NULL, and
simReleaseBuffer
does not need to be called)
All regular API functions on one page