Module: Osheet::StyledElement

Included in:
Cell, Column, Row
Defined in:
lib/osheet/styled_element.rb

Instance Method Summary collapse

Instance Method Details

#style_class(value = nil) ⇒ Object



4
5
6
7
8
9
10
# File 'lib/osheet/styled_element.rb', line 4

def style_class(value=nil)
  if value.nil?
    instance_variable_get("@style_class")
  else
    instance_variable_set("@style_class", verify_style_class(value))
  end
end