| [Overview][Constants][Types][Classes][Procedures and functions][Index] | 
Area size
Source position: typshrdh.inc line 38
| type TSize = packed record | ||
| public | ||
| cx: LongInt; | 
 | Width in pixels | 
| cy: LongInt; | 
 | Height in pixels | 
| function Add(); | ||
| function Distance(); | ||
| function IsZero; | ||
| function Subtract(); | ||
| class operator equal(TSize,TSize):Boolean(); | ||
| class operator notequal(TSize,TSize):Boolean(); | ||
| class operator add(TSize,TSize):TSize(); | ||
| class operator subtract(TSize,TSize):TSize(); | ||
| property Width: LongInt; [rw] | ||
| property Height: LongInt; [rw] | ||
| 
 | ||
| end; | 
TSize is a type to describe the size of a rectangular area, where cx is the width, cy is the height (in pixels) of the rectangle.
| 
 | Rectangle in a plane |