Core2D.Style.ArrowStyle.Create C# (CSharp) Method

Create() public static method

Creates a new ArrowStyle instance.
public static Create ( ArrowType arrowType = ArrowType.None, bool isStroked = true, bool isFilled = false, double radiusX = 5.0, double radiusY = 3.0 ) : ArrowStyle
arrowType ArrowType The arrow type.
isStroked bool The arrow shape stroke flag.
isFilled bool The arrow shape fill flag.
radiusX double The arrow X axis radius.
radiusY double The arrow Y axis radius.
return ArrowStyle
        public static ArrowStyle Create(ArrowType arrowType = ArrowType.None, bool isStroked = true, bool isFilled = false, double radiusX = 5.0, double radiusY = 3.0)
        {
            return new ArrowStyle()
            {
                ArrowType = arrowType,
                IsFilled = isFilled,
                RadiusX = radiusX,
                RadiusY = radiusY
            };
        }

Same methods

ArrowStyle::Create ( string name, BaseStyle source, ArrowType arrowType = ArrowType.None, bool isStroked = true, bool isFilled = false, double radiusX = 5.0, double radiusY = 5.0 ) : ArrowStyle