Class: DocxGenerator::Word::Text
- Defined in:
- lib/docx_generator/word/base.rb
Overview
Represent the w:t element from Office Open XML specification. This class should not be used directly by the users of the library.
Instance Method Summary collapse
-
#initialize(attributes = {}, content = []) ⇒ Text
constructor
Create a new
w:tXML element.
Methods inherited from Element
Constructor Details
#initialize(attributes = {}, content = []) ⇒ Text
Create a new w:t XML element.
68 69 70 |
# File 'lib/docx_generator/word/base.rb', line 68 def initialize(attributes = {}, content = []) super("w:t", attributes, content) end |