class Svgle::Text

Public Instance Methods

boundary() click to toggle source
# File lib/svgle.rb, line 155
def boundary()
  [0,0,0,0]
end
text=(raw_s) click to toggle source
Calls superclass method
# File lib/svgle.rb, line 159
def text=(raw_s)    
  
  oldval = @child_elements.first

  r = super(raw_s)
  @obj.text = raw_s if oldval != raw_s
  
  return r        
  
end