Sha256: 4af3c43f5841a30c360fa69c966bcb00b5a154a00479acb98c48bd5deffb6131

Contents?: true

Size: 640 Bytes

Versions: 48

Compression:

Stored size: 640 Bytes

Contents

# frozen_string_literal: true

module OoxmlParser
  # Class for parsing `w:rStyle` object
  class RunStyle < OOXMLDocumentObject
    # @return [Integer] value of size
    attr_accessor :value

    # Parse RunStyle
    # @param [Nokogiri::XML:Node] node with RunStyle
    # @return [RunStyle] result of parsing
    def parse(node)
      node.attributes.each do |key, value|
        case key
        when 'val'
          @value = value.value.to_s
        end
      end
      self
    end

    # @return [DocumentStyle] style which was referenced in RunStyle
    def referenced
      root_object.document_style_by_id(@value)
    end
  end
end

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
ooxml_parser-0.8.1 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/run_style.rb
ooxml_parser-0.8.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/run_style.rb
ooxml_parser-0.7.2 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/run_style.rb
ooxml_parser-0.7.1 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/run_style.rb
ooxml_parser-0.7.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/run_style.rb
ooxml_parser-0.6.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/run_style.rb
ooxml_parser-0.5.1 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/run_style.rb
ooxml_parser-0.5.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/run_style.rb