openxml/openxml-docx

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

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Elements
      class WordProcessingDrawingObjectNvProperties < OpenXml::Docx::Element
        tag :docPr
        namespace :wp

        attribute :description, expects: :string, displays_as: :descr
        attribute :hidden, expects: :boolean
        attribute :id, expects: :positive_integer
        attribute :object_name, expects: :string, displays_as: :name
        attribute :title, expects: :string

      end
    end
  end
end