IndicatorSetString
The function sets the value of a corresponding indicator property. The indicator property must be of the string type. There are 2 variants of the function.
Call indicating identifier of the property.
bool IndicatorSetString(
int prop_id,
string prop_value
); |
Call indicating the identifier and modifier of the property.
bool IndicatorSetString(
int prop_id,
int prop_modifier,
string prop_value
) |
Parameters
prop_id
[in] The value can be one of the values of the ENUM_CUSTOMIND_PROPERTY_STRING enumeration.
prop_modifier
[in] Modifier of the specified property. Only level properties require a modifier.
prop_value
[in] The value of the property.
Return Value