class Atk::TextRectangle
Public Class Methods
Source
# 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
Calls superclass method