TRectF
Declaration
Source position: types.pp line 147
Type
TRectF = packed record
private
function GetHeight : Single;
function GetWidth : Single;
procedure SetHeight(AValue: Single);
procedure SetWidth(AValue: Single);
public
function Union(const r: TRectF) : TRectF;
procedure Offset(const dx: Single; const dy: Single);
property Width : Single;
property Height : Single;
case Integer of
0: (
public
Left : Single;
Top : Single;
Right : Single;
Bottom : Single;
);
1: (
public
TopLeft : TPointF;
BottomRight : TPointF;
);
end