module RubyXL::FontConvenienceMethods

Public Instance Methods

get_name() click to toggle source
# File lib/rubyXL/convenience_methods.rb, line 1081
def get_name
  name && name.val
end
get_rgb_color() click to toggle source
# File lib/rubyXL/convenience_methods.rb, line 1089
def get_rgb_color
  color && color.rgb
end
get_size() click to toggle source
# File lib/rubyXL/convenience_methods.rb, line 1085
def get_size
  sz && sz.val
end
is_bold() click to toggle source
# File lib/rubyXL/convenience_methods.rb, line 1069
def is_bold
  b && (b.val != false)
end
is_italic() click to toggle source

Funny enough, but presence of <i> without value (equivalent to `val == nul`) means “italic = true”! Same is true for bold, strikethrough, etc

# File lib/rubyXL/convenience_methods.rb, line 1065
def is_italic
  i && (i.val != false)
end
is_strikethrough() click to toggle source
# File lib/rubyXL/convenience_methods.rb, line 1077
def is_strikethrough
  strike && (strike.val != false)
end
is_underlined() click to toggle source
# File lib/rubyXL/convenience_methods.rb, line 1073
def is_underlined
  u && (u.val != false)
end
set_bold(val) click to toggle source
# File lib/rubyXL/convenience_methods.rb, line 1097
def set_bold(val)
  self.b = RubyXL::BooleanValue.new(:val => val)
end
set_italic(val) click to toggle source
# File lib/rubyXL/convenience_methods.rb, line 1093
def set_italic(val)
  self.i = RubyXL::BooleanValue.new(:val => val)
end
set_name(val) click to toggle source
# File lib/rubyXL/convenience_methods.rb, line 1109
def set_name(val)
  self.name = RubyXL::StringValue.new(:val => val)
end
set_rgb_color(font_color) click to toggle source
# File lib/rubyXL/convenience_methods.rb, line 1117
def set_rgb_color(font_color)
  self.color = RubyXL::Color.new(:rgb => font_color.to_s)
end
set_size(val) click to toggle source
# File lib/rubyXL/convenience_methods.rb, line 1113
def set_size(val)
  self.sz = RubyXL::FloatValue.new(:val => val)
end
set_strikethrough(val) click to toggle source
# File lib/rubyXL/convenience_methods.rb, line 1105
def set_strikethrough(val)
  self.strike = RubyXL::BooleanValue.new(:val => val)
end
set_underline(val) click to toggle source
# File lib/rubyXL/convenience_methods.rb, line 1101
def set_underline(val)
  self.u = RubyXL::BooleanValue.new(:val => val)
end