Module: Reflex::HasFrame
Instance Method Summary collapse
- #inset_by(*args) ⇒ Object
- #move_by(*args) ⇒ Object
- #move_to(*args) ⇒ Object
- #resize_by(*args) ⇒ Object
- #resize_to(*args) ⇒ Object
Instance Method Details
#inset_by(*args) ⇒ Object
59 60 61 62 |
# File 'lib/reflex/helper.rb', line 59 def inset_by(*args) self.frame = frame.inset_by(*args) self end |
#move_by(*args) ⇒ Object
44 45 46 47 |
# File 'lib/reflex/helper.rb', line 44 def move_by(*args) self.frame = frame.move_by(*args) self end |
#move_to(*args) ⇒ Object
39 40 41 42 |
# File 'lib/reflex/helper.rb', line 39 def move_to(*args) self.frame = frame.move_to(*args) self end |
#resize_by(*args) ⇒ Object
54 55 56 57 |
# File 'lib/reflex/helper.rb', line 54 def resize_by(*args) self.frame = frame.resize_by(*args) self end |
#resize_to(*args) ⇒ Object
49 50 51 52 |
# File 'lib/reflex/helper.rb', line 49 def resize_to(*args) self.frame = frame.resize_to(*args) self end |