WidthOffset: Double;
The WidthOffset property determines arrow length.
Executing the example requires an existing ws object of the IWxWorkspace type.
Sub UserProc;
Var
ws: IWxWorkspace;
Arrow: IWxArrow;
Begin
Arrow := ws.Shapes.Item(3) As IWxArrow;
Arrow.HeightOffset := 5;
Arrow.WidthOffset := 10;
End Sub UserProc;
After executing the example arrow height and length are changed.
See also: