IWxDoubleArrow.LastPoint

Syntax

LastPoint: IGxPointF;

Description

The LastPoint property determines the position of an arrow end point.

Example

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

Sub UserProc;

Var

ws: IWxWorkspace;

DArrow: IWxDoubleArrow;

Begin

DArrow := ws.Shapes.Item(3) As IWxDoubleArrow;

DArrow.FirstPoint := New GxPointF.Create(1,6);

DArrow.LastPoint := New GxPointF.Create(3,20);

End Sub UserProc;

After executing the example the arrow position is changed in a workspace.

See also:

IWxDoubleArrow