Registriert seit: 25. Jun 2004
Ort: Jena
627 Beiträge
Delphi 10.3 Rio
|
Verständnisfrage Deklaration
5. Okt 2010, 14:10
Hallo DP.
Wie ist so eine Deklaration zu verstehen?
Delphi-Quellcode:
// aus Types.pas
TRect = packed record
case Integer of
0: (Left, Top, Right, Bottom: Longint);
1: (TopLeft, BottomRight: TPoint);
end;
Danke, gmc
Geändert von gmc616 ( 5. Okt 2010 um 14:16 Uhr)
Grund: Da war ein Tippfehler in meinr Überschrift
|