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
36 37 38 39 |
# File 'lib/writeexcel/comments.rb', line 36 def initialize super @visible = false end |
Instance Attribute Details
#visible=(value) ⇒ Object (writeonly)
Sets the attribute visible
34 35 36 |
# File 'lib/writeexcel/comments.rb', line 34 def visible=(value) @visible = value end |
Instance Method Details
#visible? ⇒ Boolean
41 42 43 |
# File 'lib/writeexcel/comments.rb', line 41 def visible? @visible end |