class OoxmlParser::LevelJustification
Class for storing Level Justification, ‘lvlJc` tag
Attributes
@return [String] value of start
Public Instance Methods
Source
# File lib/ooxml_parser/docx_parser/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
Parse LevelJustification
@param [Nokogiri::XML:Node] node with LevelJustification
@return [LevelJustification] result of parsing