Returns the bottom-left point of rectangle.

syntaxSyntax:
DlxRect.BottomLeft()

Return Value

The coordinates of the bottom-left corner of the rectangle. The coordinates are returned as a DlxPoint object.

Example

  Copy codeCopy code
var r = new DlxRect(10, 20, 80, 100);
DlxApp.Printf("x=%.2f, y=%.2f", r.BottomLeft().x, r.BottomLeft().y);

See also