...automatically create the implementation declarations?

Author: Thomas Stutz

Category: IDE

{
  If you have Delphi 4 Professional or Client/Server or a newer Version,
  you can use the key combination Ctrl+Shift+C
  to have Delphi automatically create the implementation declarations
  for methods you declare in the interface section.

  Ab Delphi 4 Prof, Client/Server kann man mit der Strg+Shift+C Tastenkombination
  automatisch die Implementation Deklaration erstellen für Methoden,
  welche man in der Interface Sektion deklariert.

  So if you add this to the interface section,
  Wenn man z.B das in die Interface Sektion schreibt,
}


  
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;


 

printed from
www.swissdelphicenter.ch
developers knowledge base