class Ruby::Ods::Manager::Cell

Attributes

no[R]

Public Class Methods

new(content, no) click to toggle source
# File lib/ruby/ods.rb, line 176
def initialize(content, no)
  @content = content
  @no = no.to_sym
end

Public Instance Methods

annotation() click to toggle source
# File lib/ruby/ods.rb, line 189
def annotation
  fetch('office:annotation/text:p').content
end
annotation=(value) click to toggle source
# File lib/ruby/ods.rb, line 193
def annotation=(value)
  fetch('office:annotation/text:p').content = value
end
value() click to toggle source
# File lib/ruby/ods.rb, line 181
def value
  fetch('text:p').content
end
value=(value) click to toggle source
# File lib/ruby/ods.rb, line 185
def value=(value)
  fetch('text:p').content = value
end