class OoxmlParser::TextValue
Class for parsing ‘c:v` object
Attributes
value[RW]
@return [String] text of value
Public Instance Methods
parse(node)
click to toggle source
Parse TextValue
@param [Nokogiri::XML:Node] node with TextValue
@return [TextValue] result of parsing
# File lib/ooxml_parser/common_parser/common_data/alternate_content/chart/chart/series/series_text/string_reference/string_cache/point/text_value.rb, line 12 def parse(node) @value = node.text self end