class Prawn::Document

def cell(options={})


See Prawn::Table::Cell.make for full options.

cell(:content => "Hello world!", :at => [12, 34])

Instantiates and draws a cell on the document.
def cell(options={})
  cell = Table::Cell.make(self, options.delete(:content), options)
  cell.draw
  cell
end