Note |
---|
This routine is available starting with SIL Insight Connector™ 5.8.0.0. |
Syntax
insight_getAttribByName(id)
...
Parameter name | Type | Required | Description |
---|---|---|---|
id | integer | Yes | The id of the object attribute. |
Return type
String
Examples
Example 1 - getting object attribute type by id
Code Block |
---|
IObjectAttrType myAttribute;
myAttribute = insight_getAttribByName(12345);
runnerLog(myAttribute.id);
runnerLog(myAttribute.name);
runnerLog(myAttribute.description);
|
Example 2 - getting object attribute type by object type id and key
Code Block |
---|
IObjectAttrType myAttribute;
myAttribute = insight_getAttribByName(12345);
runnerLog(myAttribute.id);
runnerLog(myAttribute.name);
runnerLog(myAttribute.description);
|
Example 3 - using package
...
See also
Filter by label (Content by label) | ||||||||
---|---|---|---|---|---|---|---|---|
|