ME
Returns a reference to the current object.
ME is mandatory when you want to call an inherited method, or access an inherited property or variable.
Example :
' 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