v0.0.501
Some checks failed
Build Docker and Deploy / Run goext test-suite (push) Has been cancelled

This commit is contained in:
Mike Schwörer 2024-08-07 19:31:36 +02:00
parent ab805403b9
commit a8e6f98a89
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,5 @@
package goext
const GoextVersion = "0.0.500"
const GoextVersion = "0.0.501"
const GoextVersionTimestamp = "2024-08-07T19:30:38+0200"
const GoextVersionTimestamp = "2024-08-07T19:31:36+0200"

View File

@ -20,6 +20,10 @@ type TableCellStyleOpt struct {
PDFCellOpt
}
func NewTableCellStyleOpt() *TableCellStyleOpt {
return &TableCellStyleOpt{}
}
func (o *TableCellStyleOpt) FillHeight(b bool) *TableCellStyleOpt {
o.fillHeight = &b
return o