Mattiaz
March 17th, 2004, 05:52 PM
I have a TShape object on a form and I want to store itīs Top and Left positions. Then if I add one more shape object to my app and want it to have the same position as the first shape, how can I do it easily??
NOT like this:
Shape2->Top = Shape1->Top;
Shape2->Left = Shape1->Left;
I need something like:
Shape2->Position = Shape1->Position;
NOT like this:
Shape2->Top = Shape1->Top;
Shape2->Left = Shape1->Left;
I need something like:
Shape2->Position = Shape1->Position;