Delphi
TRectD = record left, top, right, bottom: double; end;
C++
struct RectD { double left; double top; double right; double bottom; };
C#
public struct RectD {
public double left; { get; set; }
public double top; { get; set; }
public double right; { get; set; }
public double bottom; { get; set; } ...
};
Copyright © 2010-2024 Angus Johnson - Clipper2 1.3.0 - Help file built on 14 Jan 2024