class Underline

Public Instance Methods

code() click to toggle source
# File lib/vv/style/underline.rb, line 3
def code
  "\033[4m"
end
off() click to toggle source
# File lib/vv/style/underline.rb, line 7
def off
  "\033[24m"
end
Also aliased as: underline_off
uncode() click to toggle source
# File lib/vv/style/underline.rb, line 12
def uncode
  off
end
underline_off()
Alias for: off