IWxWorkspace.CreateArrow

Syntax

CreateArrow: IWxArrow;

Description

The CreateArrow method creates a figured arrow.

Example

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

Sub UserProc;

Var

ws: IWxWorkspace;

Arrow : IWxArrow;

Begin

Arrow := ws.CreateArrow;

Arrow.FirstPoint := New GxPointF.Create(1,2);

Arrow.LastPoint := New GxPointF.Create(3,19);

Arrow.Angle := 10;

End Sub UserProc;

After executing the example a figured arrow is created.

See also:

IWxWorkspace