IWxBoxArrow.ArrowHeightOffset

Syntax

ArrowHeightOffset: Double;

Description

The ArrowHeightOffset property determines offset of arrow height.

Example

Executing the example requires that the repository contains workspace with the WSP identifier containing only arrow callout.

Add links to the Andy, Drawing, Metabase system assemblies.

Sub UserProc;
Var
    mb: IMetabase;
    ws: IWxWorkspace;
    BArrow: IWxBoxArrow;
    Shapes: IWxShapes;
Begin
    // Get workspace for editing
    mb := MetabaseClass.Active;
    ws := mb.ItemById("WSP").Edit As IWxWorkspace;
    Shapes := ws.Shapes;
    BArrow := ws.Shapes.Item(0As IWxBoxArrow;
    BArrow.ArrowHeightOffset := 3;
    BArrow.ArrowWidthOffset := 20;
    (ws As IMetabaseObject).Save;
End Sub UserProc;

After executing the example arrow height and length are changed.

See also:

IWxBoxArrow