stm_r_xx_uniquenameReturns the unique path name for the specified element. The name returned by the function contains the minimum number of levels necessary to uniquely identify an element in its chart. It is especially relevant to boxes.stm_r_uniquename (id, &status)
Input/Outputstm_id state_id;
int status;
.
.
state_id = stm_r_st ("S1.S3", &status);
printf ("Unique Name:%s", stm_r_st_uniquename (
state_id, &status));
.
.
.The state name printed isS1.S3
(notS.S1.S3
orS3
). In this example, a unique state name is provided, and this value is used to retrieve the same unique state name from the database. This example demonstrates the value returned by this function, in contrast to the value returned by the functionstm_r_xx_name
.