class OoxmlParser::ArgumentSize
Class for parsing ‘m:argSz` object
Attributes
@return [String] value of size
Public Instance Methods
Source
# File lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/docx_formula/argument_properties/argument_size.rb, line 12 def parse(node) node.attributes.each do |key, value| case key when 'val' @value = value.value.to_f end end self end
Parse ArgumentSize
@param [Nokogiri::XML:Node] node with ArgumentSize
@return [ArgumentSize] result of parsing