Skip to end of banner
Go to start of banner

insight_getObject

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Current »

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);

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);

See also

  • No labels