Method: Axlsx::Marker#initialize

Defined in:
lib/axlsx/drawing/marker.rb

#initialize(options = {}) ⇒ Marker

Creates a new Marker object

Parameters:

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • col (Integer)
  • colOff (Integer)
  • row (Integer)
  • rowOff (Integer)


13
14
15
16
# File 'lib/axlsx/drawing/marker.rb', line 13

def initialize(options = {})
  @col, @colOff, @row, @rowOff = 0, 0, 0, 0
  parse_options options
end