Class: Writeexcel::Worksheet::ObjectIds

Inherits:
Object
  • Object
show all
Defined in:
lib/writeexcel/worksheet.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(spid, drawings_saved, num_shapes, max_spid) ⇒ ObjectIds

Returns a new instance of ObjectIds.



52
53
54
55
56
57
# File 'lib/writeexcel/worksheet.rb', line 52

def initialize(spid, drawings_saved, num_shapes, max_spid)
  @spid = spid
  @drawings_saved = drawings_saved
  @num_shapes = num_shapes
  @max_spid = max_spid
end

Instance Attribute Details

#drawings_savedObject (readonly)

Returns the value of attribute drawings_saved.



50
51
52
# File 'lib/writeexcel/worksheet.rb', line 50

def drawings_saved
  @drawings_saved
end

#max_spidObject (readonly)

Returns the value of attribute max_spid.



50
51
52
# File 'lib/writeexcel/worksheet.rb', line 50

def max_spid
  @max_spid
end

#num_shapesObject (readonly)

Returns the value of attribute num_shapes.



50
51
52
# File 'lib/writeexcel/worksheet.rb', line 50

def num_shapes
  @num_shapes
end

#spidObject

Returns the value of attribute spid.



49
50
51
# File 'lib/writeexcel/worksheet.rb', line 49

def spid
  @spid
end