Hello
I can use row.range.replace to replace tag with text in table. Can I set the text to be bold?
Ex. replace text is Hello,World!
What I want is Hello,World!
The method I use
FindReplaceOptions options = new FindReplaceOptions(FindReplaceDirection.Forward);
string Content = "Hello,World";
titleRow.Range.Replace("#title#", Content, options);