row style
This commit is contained in:
16
tablle_block_style.go
Normal file
16
tablle_block_style.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user