[CONNECT C Application] - Get cell name from DGN element descriptor

I have the descriptor of an element obtained with the following function:
MSElementDescr  *cell_desc;
mdlElmdscr_read(&cell_desc,
  file_pos_cella[i_cella],
  MASTERFILE,
  0,
  &file_pos_out);
Using the following code I can get the type of object:
if (cell_desc->el.ehdr.type == CELL_HEADER_ELM)
Is there anything like this to get the cell name?
Cell name refers to the name that the cell had in the cell library when it was placed.
Best Regards