[Overview][Constants][Types][Classes][Procedures and functions][Index] |
Rectangle in a plane
Source position: types.pp line 86
type TRect = packed record |
||
case Integer of |
||
0: ( |
||
Left: LongInt; |
|
Horizontal position of left edge |
Top: LongInt; |
|
Vertical position of top edge |
Right: LongInt; |
|
Horizontal position of right edge |
Bottom: LongInt; |
|
Vertical position of bottom edge |
); |
||
1: ( |
||
TopLeft: TPoint; |
|
Position of top-left corner |
BottomRight: TPoint; |
|
Position of bottom-right corner |
); |
||
end; |
TRect defines a rectangle in a discrete plane. It is described by the horizontal (left, right) or vertical (top, Bottom) positions (in pixels) of the edges, or, alternatively, by the coordinates of the top left (TopLeft) and bottom right (BottomRight) corners.
|
Point in a plane |
|
|
Area size |