Method: Docx::Elements::Containers::TableRow#cells
- Defined in:
- lib/docx/containers/table_row.rb
#cells ⇒ Object
Array of cells contained within row
21 22 23 |
# File 'lib/docx/containers/table_row.rb', line 21 def cells @node.xpath('w:tc').map {|c_node| Containers::TableCell.new(c_node) } end |