Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Note

This routine is available starting with SIL Insight Connector™ 5.8.0.0.

Syntax

insight_getObjectAttrType(id)

...

Code Block
use "insight";
IObjectAttrType myAttribute;
myAttribute = getObjectAttrType(12345, "TEST-123obj123");

runnerLog(myAttribute.id);
runnerLog(myAttribute.name);
runnerLog(myAttribute.description);

...