Sha256: e1ae66f09bdf33c5cd8d64806d1b38dad7fab9dff3a66c83f0917d7cd92f6dcb
Contents?: true
Size: 382 Bytes
Versions: 49
Compression:
Stored size: 382 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Class for parsing `c:v` object class TextValue < OOXMLDocumentObject # @return [String] text of value attr_accessor :value # Parse TextValue # @param [Nokogiri::XML:Node] node with TextValue # @return [TextValue] result of parsing def parse(node) @value = node.text self end end end
Version data entries
49 entries across 49 versions & 1 rubygems