class Atk::TextRectangle

Public Class Methods

new(x=nil, y=nil, width=nil, height=nil) click to toggle source
Calls superclass method
# File lib/atk.rb, line 30
def initialize(x=nil, y=nil, width=nil, height=nil)
  super()
  self.x = x if x
  self.y = y if y
  self.width = width if width
  self.height = height if height
end