What do you replace TRect and TPoint with from Delphi Win32 code to Delphi Prism code?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You have two options depending of your needs
using Rectangle and Point from the System.Drawing namespace Since Net 1.0
TRect ->
System.Drawing.RectangleTPoint ->
System.Drawing.Pointusing Rect and Point from the System.Windows namespace Since Net 3.0
TRect ->
System.Windows.RectTPoint ->
System.Windows.Point