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