class Spreadsheet::Note
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
Attributes
col[RW]
length[RW]
objID[RW]
row[RW]
text[RW]
Public Class Methods
new()
click to toggle source
# File lib/spreadsheet/note.rb, line 14 def initialize @author = nil @length = 0 @objID = nil @row = -1 @col = -1 @text = "" end