Is there an easy way to set the format of a cell to bold, without going to the procedure with styles?
Something like selection.Bold()
In Vba we have:
Range("A1").Characters(8, 5).Font.Bold = True
Cheers
Geir
1 Answer, 1 is accepted
0
Tanya
Telerik team
answered on 26 Apr 2018, 04:48 PM
Hi Geir,
You can directly apply bold formatting to a CellSelection using the SetIsBold() method. For more information on how to achieve that, please check the Get, Set Clear Cell Properties topic. Example 2 in this topic demonstrates the approach for setting and clearing the bold formatting of a cell.