Class: Writeexcel::Worksheet::Comments
- Inherits:
-
Collection
- Object
- Collection
- Writeexcel::Worksheet::Comments
- Defined in:
- lib/writeexcel/comments.rb
Instance Attribute Summary collapse
-
#visible ⇒ Object
writeonly
Sets the attribute visible.
Instance Method Summary collapse
-
#initialize ⇒ Comments
constructor
A new instance of Comments.
- #visible? ⇒ Boolean
Methods inherited from Collection
Constructor Details
#initialize ⇒ Comments
Returns a new instance of Comments.
37 38 39 40 |
# File 'lib/writeexcel/comments.rb', line 37 def initialize super @visible = false end |
Instance Attribute Details
#visible=(value) ⇒ Object (writeonly)
Sets the attribute visible
35 36 37 |
# File 'lib/writeexcel/comments.rb', line 35 def visible=(value) @visible = value end |
Instance Method Details
#visible? ⇒ Boolean
42 43 44 |
# File 'lib/writeexcel/comments.rb', line 42 def visible? @visible end |