module OpenXml module Docx module Properties class TableCellWidth < ComplexProperty tag :tcW with_namespace :w do attribute :type, one_of: %i(auto dxa nil pct) attribute :width, expects: :positive_integer, displays_as: :w end end end end end