IGxPoint.ToPointF

Syntax

ToPointF: IGxPointF;

Description

The ToPointF method transforms the point into the real point.

Example

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);

Var

Point: IGxPoint;

PointF: IGxPointF;

Begin

Point:=New GxPoint.Create(10,15);

PointF:=Point.ToPointF;

End Sub Button1OnClick;

After executing the example clicking the button transforms the point into the real point with the 10.15 coordinates.

See also:

IGxPoint