Class: Axlsx::Default

Inherits:
AbstractContentType show all
Defined in:
lib/axlsx/content_type/default.rb

Overview

An default content part. These parts are automatically created by for you based on the content of your package.

Constant Summary collapse

NODE_NAME =

The serialization node name for this class

'Default'

Instance Attribute Summary collapse

Attributes inherited from AbstractContentType

#content_type

Instance Method Summary collapse

Methods inherited from AbstractContentType

#initialize

Methods included from OptionsParser

#parse_options

Constructor Details

This class inherits a constructor from Axlsx::AbstractContentType

Instance Attribute Details

#extensionString Also known as: Extension

The extension of the content type.

Returns:

  • (String)


12
13
14
# File 'lib/axlsx/content_type/default.rb', line 12

def extension
  @extension
end

Instance Method Details

#to_xml_string(str = '') ⇒ Object

Serializes this object to xml



20
21
22
# File 'lib/axlsx/content_type/default.rb', line 20

def to_xml_string(str ='')
  super(NODE_NAME, str)
end