C# Class Core2D.Style.ArrowStyle

Line ending arrow style.
Inheritance: BaseStyle
Afficher le fichier Open project: Core2D/Core2D Class Usage Examples

Méthodes publiques

Méthode 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 méthode

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

ArrowStyle() public méthode

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

Clone() public méthode

Clones arrow style.
public Clone ( ) : ArrowStyle
Résultat ArrowStyle

Create() public static méthode

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.
Résultat ArrowStyle

Create() public static méthode

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.
Résultat ArrowStyle