Автоматически создать реализацию по объявлению в IDE
Оформил: DeeCo
Автор: http://www.swissdelphicenter.ch
{
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 fur 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 fur die Implementation Sektion:
}
procedure TForm1.YourProcedure(SomeParameter: string);
begin
end;
{
This also works for class declarations like this:
Dies funktioniert z.B auch fur Klassen Deklarationen wie diese:
}
type TYourButton = class(TButton)
property Height : Integer;
procedure DoSomething;
end;
|