17 lines
279 B
Go
17 lines
279 B
Go
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
|
|
}
|