ArrowHeightOffset: Double;
The ArrowHeightOffset property determines offset of arrow height.

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(0) As 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: