ApiData().GetExuderPagerTags

Returns the given Exuder’s PAGER Tags field.

Description

Returns the PAGER Tags from the given Exuder as a string. These fields store text arbitrarily and can be used in many ways. The Data layer acts similarly but without the performance timing calculations.

Example Usage (C#)


//Getting the PAGER Tags field data out of the above Exuder
string context = _core.ApiData().GetExuderPagerTags(17, 0);

int

id

The integer numeric value or variable representing the unique ID of the Behavior containing the Exuder.

int

exuderId

The integer numeric value or variable representing the indexed ID of the Exuder, separate from the Behavior ID.

Returns

The string stored in the PAGER Tags field for the given Exuder.

ApiData()