insight_getObject

Description

Returns the type of the attribute, either by id or by objectTypeId and key.

Parameters

Or

Return Type

IObject

Examples

Example 1 - getting object attribute type by id

use "insight"; IObject myObject; myObject = getObject(12345); runnerLog(myObject.id); runnerLog(myObject.lablel);

Result:

Example 2 - getting object attribute type by object type id and key

use "insight"; IObject myObject; myObject = getObject(12345); runnerLog(myObject.id); runnerLog(myObject.lablel);

Result:

See also