Class: Excelx::Font

Inherits:
Object
  • Object
show all
Defined in:
lib/roo/excelx.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#boldObject

Returns the value of attribute bold.



184
185
186
# File 'lib/roo/excelx.rb', line 184

def bold
  @bold
end

#italicObject

Returns the value of attribute italic.



184
185
186
# File 'lib/roo/excelx.rb', line 184

def italic
  @italic
end

#underlineObject

Returns the value of attribute underline.



184
185
186
# File 'lib/roo/excelx.rb', line 184

def underline
  @underline
end

Instance Method Details

#bold?Boolean

Returns:

  • (Boolean)


186
187
188
# File 'lib/roo/excelx.rb', line 186

def bold?
  @bold == true
end

#italic?Boolean

Returns:

  • (Boolean)


190
191
192
# File 'lib/roo/excelx.rb', line 190

def italic? 
 @italic == true
end

#underline?Boolean

Returns:

  • (Boolean)


194
195
196
# File 'lib/roo/excelx.rb', line 194

def underline?
  @underline == true
end