Sha256: ebec47b413dc0261187fac07ee46da09829a6e5fd0ea61a5b4005a4c5e38e77b

Contents?: true

Size: 508 Bytes

Versions: 49

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

49 entries across 49 versions & 1 rubygems

Version Path
ooxml_parser-0.22.0 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.21.0 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.20.0 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.19.0 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.18.1 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.18.0 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.17.0 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.16.0 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.15.0 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.14.2 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.14.1-mingw32 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.14.1 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.14.0 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.13.0 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.12.2 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.12.1 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.12.0 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.11.0 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.10.0 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb
ooxml_parser-0.9.1 lib/ooxml_parser/docx_parser/docx_data/document_structure/document_structure_helpers.rb