IWxDoubleBoxArrow.ArrowWidthOffset

Syntax

ArrowWidthOffset: Double;

Description

The ArrowWidthOffset property determines arrow length.

Example

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

Sub UserProc;

Var

ws: IWxWorkspace;

DBArrow: IWxDoubleBoxArrow;

Begin

DBArrow := ws.Shapes.FindById("Shape 1") As IWxDoubleBoxArrow;

DBArrow.ArrowHeightOffset := 3;

DBArrow.ArrowWidthOffset := 25;

End Sub UserProc;

After executing the example arrow height and length are changed.

See also:

IWxDoubleBoxArrow