class Prawn::Table::Cells

def width


Returns the total width of all columns in the selected set.
def width
  ColumnWidthCalculator.new(self).natural_widths.inject(0, &:+)
end