LitDev.LDFigures.AddBlockArrow C# (CSharp) Method

AddBlockArrow() public static method

Add an block arrow shape.
public static AddBlockArrow ( Primitive width, Primitive height, Primitive thickness, Primitive arrowAngle, Primitive direction ) : Primitive
width Primitive The width of the shape.
height Primitive The height of the shape.
thickness Primitive The relative thickness of the arrow shaft, e.g. 0.25.
arrowAngle Primitive The arrow head angle in degrees.
direction Primitive The direction of the arrow: "Up", "Down", "Left" or "Right".
return Primitive
        public static Primitive AddBlockArrow(Primitive width, Primitive height, Primitive thickness, Primitive arrowAngle, Primitive direction)
        {
            return AddFigure(eFigure.BLOCKARROW, width, height, new Primitive[] { thickness, arrowAngle, direction });
        }