row style

This commit is contained in:
2025-12-28 19:02:00 +03:00
parent b13d113be6
commit 0be8937fea
6 changed files with 50 additions and 9 deletions

16
tablle_block_style.go Normal file
View File

@@ -0,0 +1,16 @@
package image_table
import "image/color"
type TableBlockStyle struct {
Cells []any
BackgroundColor color.RGBA
}
func (s *TableBlockStyle) GetCells() []any {
return s.Cells
}
func (s *TableBlockStyle) GetBackgroundColor() color.RGBA {
return s.BackgroundColor
}