The Note class is a Subclass of String and represents a comment/note/annotation someone made to a cell.
Interesting Attributes
The name of the author who wrote the note
# File lib/spreadsheet/note.rb, line 14 def initialize @author = nil @length = 0 @objID = nil @row = -1 @col = -1 @text = "" end