Class: DocxGenerator::Word::Run
- Defined in:
- lib/docx_generator/word/base.rb
Overview
Represent the ‘w:r` 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 = []) ⇒ Run
constructor
Create a new ‘w:r` XML element.
Methods inherited from Element
Constructor Details
#initialize(attributes = {}, content = []) ⇒ Run
Create a new ‘w:r` XML element.
49 50 51 |
# File 'lib/docx_generator/word/base.rb', line 49 def initialize(attributes = {}, content = []) super("w:r", attributes, content) end |