class Proforma::Modeling::Table::Row

The second lowest unit of a table. A table's header, body, and footer is each composed of zero or more rows.

Public Class Methods

new(cells: []) click to toggle source
# File lib/proforma/modeling/table/row.rb, line 18
def initialize(cells: [])
  super(:cells, Cell, cells)
end