Single-Element Functions : List of Functions : stm_r_xx_synonym

stm_r_xx_synonym
Retrieves the synonym of the specified element. The synonym is defined in the element’s form.
You can call this function without indicating the specific element type:

stm_r_synonym (id, &status)

Function Type
stm_short_name
For Elements
Syntax
stm_r_xx_synonym (xx_id, &status)
Arguments
Input/Output
If no synonym is defined in the element’s form, status receives the value stm_missing_synonym.
Status Codes
Example
To write out the synonym of activity A1, use the following statements:

stm_id act_id;
int status;
.
.
act_id = stm_r_ac ("A1", &status);
printf ("Synonym:%s", stm_r_ac_synonym (act_id,
&status));
.
.
.