Sha256: ebec47b413dc0261187fac07ee46da09829a6e5fd0ea61a5b4005a4c5e38e77b

Contents?: true

Size: 508 Bytes

Versions: 48

Compression:

Stored size: 508 Bytes

Contents

# frozen_string_literal: true

module OoxmlParser
  # method to help to work with DocumentStructure
  module DocumentStructureHelpers
    # @return [True, false] if structure contain any user data
    def with_data?
      @elements.each do |current_element|
        return true if current_element.with_data?
      end
      @notes.each do |current_note|
        current_note.elements.each do |note_element|
          return true if note_element.with_data?
        end
      end
      false
    end
  end
end

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
ooxml_parser-0.8.1 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.8.0 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.7.2 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.7.1 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.7.0 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.6.0 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.5.1 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.5.0 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb