CreateFromEdges(TopLeft: IGxPointF; BottomRight: IGxPointF);
TopLeft. The point that determines the top left corner of the rectangle.
BottomRight. The point that determines the bottom right corner of the rectangle.
The CreateFromEdges constructor creates a new rectangle calculating its sizes and position in accordance with the specified angular points.
Function GetRectFFromEdges(TopLeft: IGxPointF; BottomRight: IGxPointF): IGxRectF;
Var
OutRect: IGxRectF;
Begin
OutRect := New GxRectF.CreateFromEdges(TopLeft, BottomRight);
Return OutRect;
End Function GetRectFFromEdges;
The function returns the rectangle based on the top left and bottom right points of rectangle borders.
See also: