class DocxGenerator::Word::RunProperties
Represent the ‘w:rPr` element from Office Open XML specification. This class should not be used directly by the users of the library.
Public Class Methods
new(content = [])
click to toggle source
Create a new ‘w:rPr` XML element. @param content [Array] An array of the children of the XML element (other XML elements).
Calls superclass method
DocxGenerator::Element::new
# File lib/docx_generator/word/base.rb, line 58 def initialize(content = []) super("w:rPr", {}, content) end