Answered
How to apply bold to string which is created from javascript in a document
var imgName = "img1.tif";
myTable.columns[0].cells[0].contents = "Figure Name: " + imgName;
In the above code, I need to apply Bold to "Figure Name: " alone.
Is there any way to do this?
