Sha256: 71f8ac4257ab1fe3fa7a578b8e5f2c9411511734c6439956e5a124dcbf6c292a

Contents?: true

Size: 1.29 KB

Versions: 8

Compression:

Stored size: 1.29 KB

Contents

module Axlsx
  # An default content part. These parts are automatically created by for you based on the content of your package.
  class Default

    # The extension of the content type.
    # @return [String]
    attr_reader :Extension

    # The type of content.
    # @return [String] 
    attr_reader :ContentType

    #Creates a new Default object
    # @option options [String] Extension
    # @option options [String] ContentType
    # @raise [ArgumentError] An argument error is raised if both Extension and ContentType are not specified.
    def initialize(options={})
      raise ArgumentError, "Extension and ContentType are required" unless options[:Extension] && options[:ContentType]
      options.each do |o|
        self.send("#{o[0]}=", o[1]) if self.respond_to? "#{o[0]}="
      end      
    end
    # Sets the file extension for this content type.
    def Extension=(v) Axlsx::validate_string v; @Extension = v end

    # Sets the content type
    # @see Axlsx#validate_content_type
    def ContentType=(v) Axlsx::validate_content_type v; @ContentType = v end

    # Serializes the object to xml
    # @param [Nokogiri::XML::Builder] xml The document builder instance this objects xml will be added to.
    # @return [String]
    def to_xml(xml)
      xml.Default(self.instance_values)
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
axlsx-1.0.16 lib/axlsx/content_type/default.rb
axlsx-1.0.15 lib/axlsx/content_type/default.rb
axlsx-1.0.14 lib/axlsx/content_type/default.rb
axlsx-1.0.13 lib/axlsx/content_type/default.rb
axlsx-1.0.11 lib/axlsx/content_type/default.rb
axlsx-1.0.10 lib/axlsx/content_type/default.rb
axlsx-1.0.10a lib/axlsx/content_type/default.rb
axlsx-1.0.9 lib/axlsx/content_type/default.rb