Method: Prawn::Table::CellProxy#method_missing

Defined in:
lib/prawn/table/accessors.rb

#method_missing(id, *args, &block) ⇒ Object

Supports setting arbitrary properties on a group of cells.

table.cells.row(3..6).background_color = 'cc0000'


171
172
173
# File 'lib/prawn/table/accessors.rb', line 171

def method_missing(id, *args, &block)
  @cells.each { |c| c.send(id, *args, &block) }
end