In pascal you use self for accesing object instance to which current code belongs.

Also if you need to interact with same object several times in a row you can use:
Code:
with SomeObject do
begin
....
end;
So calling this:
Code:
with Form1 do
begin
  Width := 640;
  Height := 480;
  Color := clWhite;
end;
is same as calling this:
Code:
Form1.Width := 640;
Form1.Height := 480;
Form1.Color := clWhite;