It is posssbile to set more than one hyperlink in tablecell?
$textRun = $row->nextCell()->createTextRun($link);
$textRun->getFont()->setName($this->table_font);
$textRun->getFont()->setSize($font_size);
$textRun->getHyperlink()->setUrl($complete_url)->setTooltip($complete_url);
$textRun->getFont()->setColor(new Color($this->font_color));
It is posssbile to set more than one hyperlink in tablecell?