class Odf::Element::TableRow
Constants
- VALID_OPTIONS
- XML_TAG
Public Class Methods
build(parent, options = {})
click to toggle source
# File lib/odf/element/table_row.rb, line 7 def self.build(parent, options = {}) new(parent, options) end
Public Instance Methods
add_cell(content, options = {})
click to toggle source
# File lib/odf/element/table_row.rb, line 11 def add_cell(content, options = {}) Odf::Element::TableCell.build(self, content, options) end