FirstPoint: IGxPointF;
The FirstPoint property determines the position of an arrow start point.
Executing the example requires an existing ws object of the IWxWorkspace type.
Sub UserProc;
Var
ws: IWxWorkspace;
Arrow: IWxArrow;
Begin
Arrow := ws.Shapes.Item(3) As IWxArrow;
Arrow.FirstPoint := New GxPointF.Create(1,2);
Arrow.LastPoint := New GxPointF.Create(3,19);
End Sub UserProc;
After executing the example the arrow position is changed in a workspace.
See also: