matrix.go 329 B

123456789101112131415
  1. package xvdoc
  2. type Matrix struct {
  3. Name string
  4. Cells [][]Cell
  5. RowsHeight map[int]float64
  6. Styles map[string]Style
  7. RowsStyle map[int]JSONMap
  8. Style string
  9. StyleRects []*styleRect
  10. Dropdowns []*dropDown
  11. Merges []*rectMerge
  12. Images []*cellImage
  13. ColumnsWidth []*rectWidths
  14. }