Points(Index: Integer): IGxPointF;
Index - line point index.
The Points property determines a coordinate for a line point.
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: