Method: Docxi::Word::Contents::Table#initialize

Defined in:
lib/docxi/word/contents/table.rb

#initialize(options = {}) ⇒ Table

Returns a new instance of Table.



8
9
10
11
12
13
14
15
16
17
# File 'lib/docxi/word/contents/table.rb', line 8

def initialize(options={})
  @options = options
  @rows = []

  if block_given?
    yield self
  else

  end
end