class Axlsx::Override

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

Constants

NODE_NAME

Serialization node name for this object

Attributes

PartName[R]

The name and location of the part. @return [String]

part_name[R]

The name and location of the part. @return [String]

Public Instance Methods

PartName=(v)
Alias for: part_name=
part_name=(v) click to toggle source

The name and location of the part.

# File lib/axlsx/content_type/override.rb, line 17
def part_name=(v) Axlsx::validate_string v; @part_name = v end
Also aliased as: PartName=
to_xml_string(str = '') click to toggle source

Serializes this object to xml

# File lib/axlsx/content_type/override.rb, line 21
def to_xml_string(str = '')
  super(NODE_NAME, str)
end