Sha256: fe2061d3191f2690926362ee049718fce364643032837015b93467804d667214
Contents?: true
Size: 659 Bytes
Versions: 4
Compression:
Stored size: 659 Bytes
Contents
module OoxmlParser # Class for `x14:table` data class X14Table < OOXMLDocumentObject # @return [String] alternate text for table attr_accessor :alt_text # @return [String] alternate text summary table attr_accessor :alt_text_summary # Parse X14Table data # @param [Nokogiri::XML:Element] node with X14Table data # @return [X14Table] value of X14Table data def parse(node) node.attributes.each do |key, value| case key when 'altText' @alt_text = value.value.to_s when 'altTextSummary' @alt_text_summary = value.value.to_s end end self end end end
Version data entries
4 entries across 4 versions & 1 rubygems