Einzelnen Beitrag anzeigen

Popov
(Gast)

n/a Beiträge
 
#5

AW: Prozedur zusammenbauen

  Alt 17. Nov 2012, 20:44
Kann es ein, dass du sowas in der Art wie bei Format suchst:

Delphi-Quellcode:
Format('Text %s, Text %s, Text %s', [a, b, c]);
...
Das wird da so gelöst:

Delphi-Quellcode:
function Format(const Format: string; const Args: array of const): string;
begin
  ...
end;
//Edit:

Bei Polygon

Syntax:
Delphi-Quellcode:
procedure Polygon(Points: array of TPoint);
...
Beispiel:
Delphi-Quellcode:
Canvas.Polygon([Point(10, 10), Point(30, 10), Point(130, 30), Point(240, 120)]);
...
Delphi-Quellcode:
procedure TCanvas.Polygon(const Points: array of TPoint);
begin
  ...
end;

Geändert von Popov (17. Nov 2012 um 20:51 Uhr)
  Mit Zitat antworten Zitat