delphitobject

Why the "T" prefix in TObject?


When declaring classes and so on, what does the "T" in TObject stand for? Template?

Example:

procedure TfrmMain.CaptureInfo1Click(Sender: TObject);
begin
  frmCapture.Show;
end;

Solution

  • It stands for "Type", as far as I know.