Sha256: 34c6207b3549eaf7ecb752c85b1a34248977cdfa6157681e783e0b2b86c7e59f
Contents?: true
Size: 511 Bytes
Versions: 43
Compression:
Stored size: 511 Bytes
Contents
require 'spreadsheet/encodings' module Spreadsheet ## # The Note class is a Subclass of String and represents a comment/note/annotation # someone made to a cell. # # # Interesting Attributes # #author :: The name of the author who wrote the note class Note include Encodings attr_accessor :author, :length, :objID, :row, :col, :text def initialize @author = nil @length = 0 @objID = nil @row = -1 @col = -1 @text = "" end end end
Version data entries
43 entries across 43 versions & 3 rubygems