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.



199
200
201
# File 'lib/roo/excelx.rb', line 199

def bold
  @bold
end

#italicObject

Returns the value of attribute italic.



199
200
201
# File 'lib/roo/excelx.rb', line 199

def italic
  @italic
end

#underlineObject

Returns the value of attribute underline.



199
200
201
# File 'lib/roo/excelx.rb', line 199

def underline
  @underline
end

Instance Method Details

#bold?Boolean

Returns:

  • (Boolean)


201
202
203
# File 'lib/roo/excelx.rb', line 201

def bold?
  @bold == true
end

#italic?Boolean

Returns:

  • (Boolean)


205
206
207
# File 'lib/roo/excelx.rb', line 205

def italic? 
  @italic == true
end

#underline?Boolean

Returns:

  • (Boolean)


209
210
211
# File 'lib/roo/excelx.rb', line 209

def underline?
  @underline == true
end