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
31 32 33 34 |
# File 'lib/reflex/helper.rb', line 31 def inset_by(*args) self.frame = frame.inset_by(*args) self end |
#move_by(*args) ⇒ Object
16 17 18 19 |
# File 'lib/reflex/helper.rb', line 16 def move_by(*args) self.frame = frame.move_by(*args) self end |
#move_to(*args) ⇒ Object
11 12 13 14 |
# File 'lib/reflex/helper.rb', line 11 def move_to(*args) self.frame = frame.move_to(*args) self end |
#resize_by(*args) ⇒ Object
26 27 28 29 |
# File 'lib/reflex/helper.rb', line 26 def resize_by(*args) self.frame = frame.resize_by(*args) self end |
#resize_to(*args) ⇒ Object
21 22 23 24 |
# File 'lib/reflex/helper.rb', line 21 def resize_to(*args) self.frame = frame.resize_to(*args) self end |