class OoxmlParser::LevelJustification
Class for storing Level Justification, `lvlJc` tag
Attributes
value[RW]
@return [String] value of start
Public Instance Methods
parse(node)
click to toggle source
Parse LevelJustification
@param [Nokogiri::XML:Node] node with LevelJustification
@return [LevelJustification] result of parsing
# File lib/ooxml_parser/docx_parser/docx_data/document_structure/numbering/abstract_numbering/numbering_level/level_justification.rb, line 12 def parse(node) node.attributes.each do |key, value| case key when 'val' @value = value.value.to_s end end self end