C# Class Core2D.Style.ArrowStyle

Line ending arrow style.
Inheritance: BaseStyle
ファイルを表示 Open project: Core2D/Core2D Class Usage Examples

Public Methods

Method Description
ArrowStyle ( )

Initializes a new instance of the ArrowStyle class.

ArrowStyle ( BaseStyle source )

Initializes a new instance of the ArrowStyle class.

Clone ( ) : ArrowStyle

Clones arrow style.

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

Creates a new ArrowStyle instance.

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

Creates a new ArrowStyle instance.

Method Details

ArrowStyle() public method

Initializes a new instance of the ArrowStyle class.
public ArrowStyle ( )

ArrowStyle() public method

Initializes a new instance of the ArrowStyle class.
public ArrowStyle ( BaseStyle source )
source BaseStyle The source style.

Clone() public method

Clones arrow style.
public Clone ( ) : ArrowStyle
return ArrowStyle

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

Create() public static method

Creates a new ArrowStyle instance.
public static Create ( string name, BaseStyle source, ArrowType arrowType = ArrowType.None, bool isStroked = true, bool isFilled = false, double radiusX = 5.0, double radiusY = 5.0 ) : ArrowStyle
name string The arrow style name.
source BaseStyle The source style.
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