Sha256: b2b1fab7caab899c9b334e42aded062f2550448d437ce714f2d96d0e8dd5a681

Contents?: true

Size: 669 Bytes

Versions: 3

Compression:

Stored size: 669 Bytes

Contents

# frozen_string_literal: true

module Goldendocx
  module Tables
    module Properties
      class CellProperty
        include Goldendocx::Element

        namespace :w
        tag :tcPr

        embeds_one :width, class_name: 'Goldendocx::Tables::Properties::CellWidthProperty', auto_build: true
        embeds_one :vertical_align, class_name: 'Goldendocx::Tables::Properties::VerticalAlignProperty', auto_build: true
        embeds_one :grid_span, class_name: 'Goldendocx::Tables::Properties::GridSpanProperty', auto_build: true
        embeds_one :shading, class_name: 'Goldendocx::Tables::Properties::ShadingProperty', auto_build: true
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
goldendocx-0.3.0 lib/goldendocx/tables/properties/cell_property.rb
goldendocx-0.2.3 lib/goldendocx/tables/properties/cell_property.rb
goldendocx-0.2.2 lib/goldendocx/tables/properties/cell_property.rb