Registriert seit: 1. Aug 2007
Ort: Ludwigshafen am Rhein
1.529 Beiträge
Delphi 7 Professional
|
Re: Array of Record - Einzelne Fixe Elemente?
22. Mai 2008, 21:59
Delphi-Quellcode:
TValues = class(TPersistent) // oder was auch immer
private
xxx: array of TValue; // dein Record
fName: string;
protected
function Get(Index: Integer): string; virtual; abstract;
procedure Put(Index: Integer; const S: string); virtual;
public
property Strings[Index: Integer]: string read Get write Put; default;
property Name: String read fName write fName;
end;
ungefähr so
Bernhard Iliacos intra muros peccatur et extra!
|