In EPPlus extension, if I need to set style for a range of cells such as A1 to C1, I will use the following
ws.Cells["A1:C1"].Style.Font.Bold = true;
What is the equivalent for this using numbers only?
Cells
has an overload that will let you do [FromRow, FromCol, ToRow, ToCol]
like this:
ws.Cells[1, 1, 1, 3].Style.Font.Bold = true;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With