ApiData().GetAbsorberText

Returns a given Absorber’s AI input pattern.

Description

This function returns one of the input patterns in the identified Behavior.

Example Usage (C#)


string pattern = _core.ApiData().GetAbsorberText(147, 0);

Parameters

int

id

The numeric integer id of the Behavior from which to read the data.

int

absorberId

The numeric integer id of the Absorber to read.

Returns

The string value representing the returned input pattern, or a null value if unsuccessful

ApiData()