Class: DocxGenerator::Word::Break
- Defined in:
- lib/docx_generator/word/base.rb
Overview
Represent the w:br 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 = {}) ⇒ Break
constructor
Create a new
w:brelement.
Methods inherited from Element
Constructor Details
#initialize(attributes = {}) ⇒ Break
Create a new w:br element.
77 78 79 |
# File 'lib/docx_generator/word/base.rb', line 77 def initialize(attributes = {}) super("w:br", attributes) end |