ME
ME
Devuelve una referencia al objeto actual.
ME es obligatorio cuando quiere llamar a un método heredado, o acceder a una propiedad o  heredada.
Examples
' Gambas form
...
PUBLIC SUB SetTitle(Title AS String)
  ME.Text = Title
END
PUBLIC SUB MoveRight(Step AS Integer)
  ME.Move(ME.X + Step, ME.Y)
END
El siguiente ejemplo muestra que ME regresa 
Form, mientras 
LAST regresa el 
Button activo.
PUBLIC SUB Button5_Click()
PRINT ME, LAST
END
(Form1 0x80d8090)	(Button 0x80fa060)
Véase también