[Overview][Constants][Types][Classes][Procedures and functions][Index] |
Area size
Source position: types.pp line 101
type TSize = packed record |
||
cx: LongInt; |
|
Width in pixels |
cy: LongInt; |
|
Height in pixels |
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 |