openxml/openxml-docx

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

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Elements
      class WordProcessingShapesTextualContent < OpenXml::Docx::Element
        include HasChildren, HasProperties

        tag :txbx
        namespace :wps

        attribute :id, expects: :positive_integer

      end
    end
  end
end