This may be a simple question but I can't seem to find the answer after googling or going on the MSDN!
I have defined a rectangle using the following:
gridSecondRect3 = new Rectangle(324, 172, 471, 304);
I understand the first 2 number are the stating x & y, and the last 2 are the finishing x&y of the rectangle.
I understand how to access the first two using gridSecondRect3.X (or .Y)
However, I would like to know how to access the last 2 numbers.
I've tried using the .Height & .Width operators, however it didn't work.