ToPoint: IGxPointF;
The ToPoint method transforms the size into the point.
The size is determined with real values.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
SizeF: IGxSizeF;
PointF: IGxPointF;
Begin
SizeF:=New GxSizeF.Create(30.654,35.34);
PointF:=SizeF.ToPoint;
End Sub Button1OnClick;
After executing the example clicking the button transforms the size into the point with the 30.654; 35.34 coordinates.
See also: