IGxSizeF.ToPoint

Syntax

ToPoint: IGxPointF;

Description

The ToPoint method transforms the size into the point.

Comments

The size is determined with real values.

Example

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:

IGxSizeF