Returns the bottom-right point of rectangle.
Syntax: |
|---|
| DlxRect.BottomRight() |
Return Value
The coordinates of the bottom-right corner of the rectangle. The coordinates are returned as a DlxPoint object.
Example
Copy code
|
|
|---|---|
var r = new DlxRect(10, 20, 80, 100);
DlxApp.Printf("x=%.2f, y=%.2f", r.BottomRight().x, r.BottomRight().y);
|
|
