Is there a built-in function in Delphi 7 that returns a TSize from a given cx and cy parameters?
Something similar to the functions Rect() and Point() etc...
I know that writing my own is very simple (although its a shame that Size is already an alias to TSize so I can't name my function Size). but I was wondering if there is a build-in function in the RTL.
TSize.Create(cx, cy)?TSizeis a record type in Delphi 7. it has notCreatemethod and records does not support methods or helpers in D7.