When getting the merged properties of a cell (isMerged), only the first cell returns True. Not sure if this is a bug that should be reported or if there is a way around this.
Libreoffice 6.1.0.3 on CentOS
Ex:
+---------------+----------------+
| A | B |
+------------------------+----------------+
| 1 | Merged Cell |
+------------------------+----------------+
| 2 | Normal | Normal |
+--------+---------------+----------------+
The spreadsheet generated the following results:
getCellRangeByName("$A$1").getIsMerged -> True
getCellRangeByName("$A$2").getIsMerged -> False
getCellRangeByName("$B$1").getIsMerged -> False (why??!!)
getCellRangeByName("$B$2").getIsMerged -> False
Any hacks to get around this?