C# 클래스 Core2D.Style.ArrowStyle

Line ending arrow style.
상속: BaseStyle
파일 보기 프로젝트 열기: Core2D/Core2D 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

ArrowStyle() 공개 메소드

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

ArrowStyle() 공개 메소드

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

Clone() 공개 메소드

Clones arrow style.
public Clone ( ) : ArrowStyle
리턴 ArrowStyle

Create() 공개 정적인 메소드

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.
리턴 ArrowStyle

Create() 공개 정적인 메소드

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.
리턴 ArrowStyle