class TablePrint::Row

def vis(prefix="")

this is a development tool, to show the structure of the row/row_group tree
def vis(prefix="")
  puts "#{prefix}row #{cells.inspect.to_s}"
  children.each{|c| c.vis(prefix + "  ")}
end