IWxLink.Points

Syntax

Points(Index: Integer): IGxPointF;

Parameters

Index - line point index.

Description

The Points property determines a coordinate for a line point.

Example

Executing the example requires an existing ws object of the IWxWorkspace type.

Sub UserProc;

Var

ws: IWxWorkspace;

Link : IWxLink;

Begin

Link := ws.Shapes.Item(2) As IWxLink;

Link.Points(1) := New GxPointF.Create(-45, -92);

End Sub UserProc;

After executing the example the position of the defined point is changed.

See also:

IWxLink