My task is to display images fetched from a server in newly generated table rows (the table already exists). I am able to select the table but I am struggling with inserting the images into the table cells. I managed to add only plain text to the table cells using this method:
let rowCollection = table.addRows(Word.InsertLocation.end, stringValues.length, stringValues);
I didn't find a way to add various elements to table cells in the docs. Is there something I am missing?