Examples Delphi

Title: How to automatically create the implementation declarations
procedure YourProcedure(SomeParameter: string);
{
...Delphi will create the following in the implementation section:
...generiert Delphi automatisch den Code f¨¹r die Implementation Sektion:
}
procedure TForm1.YourProcedure(SomeParameter: string);
begin
end;
{
This also works for class declarations like this:
Dies funktioniert z.B auch f¨¹r Klassen Deklarationen wie diese:
}
type TYourButton = class(TButton)
property Height : Integer;
procedure DoSomething;
end;