Class: Axlsx::HeaderFooter

Inherits:
Object
  • Object
show all
Includes:
Accessors, OptionsParser, SerializedAttributes
Defined in:
lib/axlsx/workbook/worksheet/header_footer.rb

Overview

Note:

The recommended way of managing header/footers is via Worksheet#header_footer

Header/Footer options for printing a worksheet. All settings are optional.

Headers and footers are generated using a string which is a combination of plain text and control characters. A fairly comprehensive list of control characters can be found here: https://github.com/randym/axlsx/blob/master/notes_on_header_footer.md     

Instance Method Summary collapse

Methods included from SerializedAttributes

#declared_attributes, included, #serialized_attributes, #serialized_element_attributes, #serialized_tag

Methods included from OptionsParser

#parse_options

Constructor Details

#initialize(options = {}) ⇒ HeaderFooter

Creates a new HeaderFooter object

Options Hash (options):

  • odd_header (String)

    The content for headers on odd numbered pages.

  • odd_footer (String)

    The content for footers on odd numbered pages.

  • even_header (String)

    The content for headers on even numbered pages.

  • even_footer (String)

    The content for footers on even numbered pages.

  • first_header (String)

    The content for headers on the first page.

  • first_footer (String)

    The content for footers on the first page.

  • different_odd_even (Boolean)

    Setting this to true will show different headers/footers on odd and even pages. When false, the odd headers/footers are used on each page. (Default: false)

  • different_first (Boolean)

    If true, will use the first header/footer on page 1. Otherwise, the odd header/footer is used.



25
26
27
# File 'lib/axlsx/workbook/worksheet/header_footer.rb', line 25

def initialize(options = {})
  parse_options options
end

Instance Method Details

#set(options) ⇒ Object

Set some or all header/footers at once.



36
37
38
# File 'lib/axlsx/workbook/worksheet/header_footer.rb', line 36

def set(options)
  parse_options options
end

#to_xml_string(str = '') ⇒ String

Serializes the header/footer object.



43
44
45
46
47
48
49
# File 'lib/axlsx/workbook/worksheet/header_footer.rb', line 43

def to_xml_string(str = '')
  serialized_tag('headerFooter', str) do
    serialized_element_attributes(str) do |value|
      value = ::CGI.escapeHTML(value)
    end
  end
end