Skip to end of banner
Go to start of banner

insight_getAttribByName

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 2 Next »

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

Syntax

insight_getAttribByName(id)

Package

insight

Short Name

getAttribByName (only when using package)

Description

Gets an attribute by name, and returns the string representation for it.

Parameters

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

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

IObjectAttrType myAttribute;
myAttribute = insight_getAttribByName(12345);

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

Example 3 - using package

use "insight";
IObjectAttrType myAttribute;
myAttribute = getAttribByName(12345, "obj123");

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

See also

Filter by label

There are no items with the selected labels at this time.

  • No labels