Basic struct for defining a rectengular region with integer values
Source position: agraphics.pas line 44
type TRect32 = record |
||
MinX: LongInt; |
|
Left Edge |
MinY: LongInt; |
|
Top edge |
MaxX: LongInt; |
|
Right Edge |
MaxY: LongInt; |
|
Bottom Edge |
end; |