Sha256: 210a4d00dfb0e7606f903bfafb50104ce84c7742ed2698f61717b45fa37b5f9c
Contents?: true
Size: 1.61 KB
Versions: 18
Compression:
Stored size: 1.61 KB
Contents
# frozen_string_literal: true module OoxmlParser # Table Position Data class TablePosition < OOXMLDocumentObject attr_accessor :left, :right, :top, :bottom, :position_x, :position_y, :horizontal_anchor, :vertical_anchor, :vertical_align_from_anchor, :horizontal_align_from_anchor # @return [String] result of convert of object to string def to_s "Table position left: #{left}, " \ "right: #{right}, " \ "top: #{top}, " \ "bottom #{bottom}, " \ "position x: #{position_x}, " \ "position y: #{position_y}" end # Parse TablePosition object # @param node [Nokogiri::XML:Element] node to parse # @return [TablePosition] result of parsing def parse(node) node.attributes.each do |key, value| case key when 'leftFromText' @left = OoxmlSize.new(value.value.to_f) when 'rightFromText' @right = OoxmlSize.new(value.value.to_f) when 'topFromText' @top = OoxmlSize.new(value.value.to_f) when 'bottomFromText' @bottom = OoxmlSize.new(value.value.to_f) when 'tblpX' @position_x = OoxmlSize.new(value.value.to_f) when 'tblpY' @position_y = OoxmlSize.new(value.value.to_f) when 'vertAnchor' @vertical_anchor = value.value.to_sym when 'horzAnchor' @horizontal_anchor = value.value.to_sym when 'tblpXSpec' @horizontal_align_from_anchor = value.value.to_sym when 'tblpYSpec' @vertical_align_from_anchor = value.value.to_sym end end self end end end
Version data entries
18 entries across 18 versions & 1 rubygems