jameskleeh / groovy-excel-builder

A Groovy DSL for Building Excel Files
Apache License 2.0
46 stars 14 forks source link

How to merge cells? #9

Closed dodorooo closed 7 years ago

jameskleeh commented 7 years ago

Looks like I forgot to document this:

Inside of a row or column, you can call merge

merge {
      cell('A1')
      cell('A2')
}

It can also take default styling

 merge [font: ...], {
       cell('A1')
       cell('A2')
}