Sha256: 1ce5fb4277b0eb107abc1f39c123b8e8da2214f5f57e7f90f277042492714f30

Contents?: true

Size: 279 Bytes

Versions: 2

Compression:

Stored size: 279 Bytes

Contents

# Image Data
module OoxmlParser
  class Image
    attr_accessor :path, :start_x, :start_y, :end_x, :end_y, :wrap_text

    def initialize
      @path = nil
      @start_x = 0
      @start_y = 0
      @end_x = nil
      @end_y = nil
      @wrap_text = 'In text'
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ooxml_parser-0.1.2 lib/ooxml_parser/docx_parser/docx_data/document_structure/image.rb
ooxml_parser-0.1.1 lib/ooxml_parser/docx_parser/docx_data/document_structure/image.rb