Class: Openoffice::Font
- Inherits:
-
Object
- Object
- Openoffice::Font
- Defined in:
- lib/roo/openoffice.rb
Instance Attribute Summary collapse
-
#bold ⇒ Object
Returns the value of attribute bold.
-
#italic ⇒ Object
Returns the value of attribute italic.
-
#underline ⇒ Object
Returns the value of attribute underline.
Instance Method Summary collapse
Instance Attribute Details
#bold ⇒ Object
Returns the value of attribute bold.
113 114 115 |
# File 'lib/roo/openoffice.rb', line 113 def bold @bold end |
#italic ⇒ Object
Returns the value of attribute italic.
113 114 115 |
# File 'lib/roo/openoffice.rb', line 113 def italic @italic end |
#underline ⇒ Object
Returns the value of attribute underline.
113 114 115 |
# File 'lib/roo/openoffice.rb', line 113 def underline @underline end |
Instance Method Details
#bold? ⇒ Boolean
115 116 117 |
# File 'lib/roo/openoffice.rb', line 115 def bold? @bold == 'bold' end |
#italic? ⇒ Boolean
119 120 121 |
# File 'lib/roo/openoffice.rb', line 119 def italic? @italic == 'italic' end |
#underline? ⇒ Boolean
123 124 125 |
# File 'lib/roo/openoffice.rb', line 123 def underline? @underline != nil end |