openxml/openxml-docx

View on GitHub
lib/openxml/docx/elements/absolute_position_tab.rb

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Elements
      class AbsolutePositionTab < OpenXml::Docx::Element
        tag :ptab

        with_namespace :w do
          attribute :alignment, one_of: %i(center left right)
          attribute :leader, one_of: %i(dot hyphen middleDot none underscore)
          attribute :relative_to, one_of: %i(indent margin), displays_as: :relativeTo
        end

      end
    end
  end
end