Class: RubyXL::Font
Overview
Constant Summary
collapse
- MAX_DIGIT_WIDTH =
Since we have no capability to load the actual fonts, we’ll have to live with the default.
7
Instance Method Summary
collapse
#define_attribute, #define_child_node, #define_element_name, #obtain_class_variable, #parse
#before_write_xml, #dup, #index_in_collection, #initialize, #write_xml
Instance Method Details
#==(other) ⇒ Object
29
30
31
32
33
34
35
36
37
|
# File 'lib/rubyXL/objects/font.rb', line 29
def ==(other)
(!(self.i && self.i.val) == !(other.i && other.i.val)) &&
(!(self.b && self.b.val) == !(other.b && other.b.val)) &&
(!(self.u && self.u.val) == !(other.u && other.u.val)) &&
(!(self.strike && self.strike.val) == !(other.strike && other.strike.val)) &&
((self.name && self.name.val) == (other.name && other.name.val)) &&
((self.sz && self.sz.val) == (other.sz && other.sz.val)) &&
(self.color == other.color)
end
|
#get_name ⇒ Object
71
72
73
|
# File 'lib/rubyXL/objects/font.rb', line 71
def get_name
name && name.val
end
|
#get_rgb_color ⇒ Object
87
88
89
|
# File 'lib/rubyXL/objects/font.rb', line 87
def get_rgb_color
color && color.rgb
end
|
#get_size ⇒ Object
79
80
81
|
# File 'lib/rubyXL/objects/font.rb', line 79
def get_size
sz && sz.val
end
|
#is_bold ⇒ Object
47
48
49
|
# File 'lib/rubyXL/objects/font.rb', line 47
def is_bold
b && b.val
end
|
#is_italic ⇒ Object
39
40
41
|
# File 'lib/rubyXL/objects/font.rb', line 39
def is_italic
i && i.val
end
|
#is_strikethrough ⇒ Object
63
64
65
|
# File 'lib/rubyXL/objects/font.rb', line 63
def is_strikethrough
strike && strike.val
end
|
#is_underlined ⇒ Object
55
56
57
|
# File 'lib/rubyXL/objects/font.rb', line 55
def is_underlined
u && u.val
end
|
#set_bold(val) ⇒ Object
51
52
53
|
# File 'lib/rubyXL/objects/font.rb', line 51
def set_bold(val)
self.b = RubyXL::BooleanValue.new(:val => val)
end
|
#set_italic(val) ⇒ Object
43
44
45
|
# File 'lib/rubyXL/objects/font.rb', line 43
def set_italic(val)
self.i = RubyXL::BooleanValue.new(:val => val)
end
|
#set_name(val) ⇒ Object
75
76
77
|
# File 'lib/rubyXL/objects/font.rb', line 75
def set_name(val)
self.name = RubyXL::StringValue.new(:val => val)
end
|
#set_rgb_color(font_color) ⇒ Object
Helper method to modify the font color
92
93
94
|
# File 'lib/rubyXL/objects/font.rb', line 92
def set_rgb_color(font_color)
self.color = RubyXL::Color.new(:rgb => font_color.to_s)
end
|
#set_size(val) ⇒ Object
83
84
85
|
# File 'lib/rubyXL/objects/font.rb', line 83
def set_size(val)
self.sz = RubyXL::FloatValue.new(:val => val)
end
|
#set_strikethrough(val) ⇒ Object
67
68
69
|
# File 'lib/rubyXL/objects/font.rb', line 67
def set_strikethrough(val)
self.strike = RubyXL::BooleanValue.new(:val => val)
end
|
#set_underline(val) ⇒ Object
59
60
61
|
# File 'lib/rubyXL/objects/font.rb', line 59
def set_underline(val)
self.u = RubyXL::BooleanValue.new(:val => val)
end
|