openxml/openxml-pptx

View on GitHub
lib/openxml/pptx/properties/customer_data_list.rb

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Pptx
    module Properties
      class CustomerDataList < SimplePropertyContainerProperty
        namespace :p
        tag :custDataLst

        property :data, as: :customer_data_container
        property :tags, as: :data_tags

      end
    end
  end
end