IWxWorkspace.CreateDoubleBoxArrow

Syntax

CreateDoubleBoxArrow: IWxDoubleBoxArrow;

Description

The CreateDoubleBoxArrow method creates a two-headed arrow callout.

Example

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

Sub UserProc;

Var

ws: IWxWorkspace;

DBArrow : IWxDoubleBoxArrow;

Begin

DBArrow := ws.CreateDoubleBoxArrow;

DBArrow.ArrowHeightOffset := 3;

DBArrow.ArrowWidthOffset := 25;

DBArrow.PinPosition := New GxPointF.Create(12, 10);

End Sub UserProc;

After executing the example a two-headed arrow callout is created.

See also:

IWxWorkspace