Sha256: 7801ec2db25f5356e3b77d58b83799449b1233a0763775651a2eb09a9bf25f2f
Contents?: true
Size: 656 Bytes
Versions: 25
Compression:
Stored size: 656 Bytes
Contents
# encoding: UTF-8 module Axlsx # An default content part. These parts are automatically created by for you based on the content of your package. class Default < AbstractContentType # The serialization node name for this class NODE_NAME = 'Default' # The extension of the content type. # @return [String] attr_reader :extension alias :Extension :extension # Sets the file extension for this content type. def extension=(v) Axlsx::validate_string v; @extension = v end alias :Extension= :extension= # Serializes this object to xml def to_xml_string(str ='') super(NODE_NAME, str) end end end
Version data entries
25 entries across 25 versions & 6 rubygems