Since v4.4.2, we add two new methods to format a cell: Cell.GetStyle method and Cell.SetStyle method.
So now you can use following two ways to format a cell:
1. use Cell.Style property
[C#]
cell.Style.Font.IsBold = true;
[VB.NET]
cell.Style.Font.IsBold
Read More