[]
Creates a new arrow shape.
public ArrowShape()
Public Sub New()
Creates a new arrow shape object from serialization.
public ArrowShape(SerializationInfo info, StreamingContext context)
Public Sub New(info As SerializationInfo, context As StreamingContext)
Type | Name | Description |
---|---|---|
SerializationInfo | info | Object that holds the serialized object data |
StreamingContext | context | Contexual information about the source or destination of the serialization |
Creates a new shape that is a copy of the specified shape.
public ArrowShape(ArrowShape shape)
Public Sub New(shape As ArrowShape)
Type | Name | Description |
---|---|---|
ArrowShape | shape | Shape to copy. |
Creates a new shape.
public ArrowShape(Point startPoint, Point endPoint, float arrowTipWidth)
Public Sub New(startPoint As Point, endPoint As Point, arrowTipWidth As Single)
Type | Name | Description |
---|---|---|
Point | startPoint | Start point of arrow shape. |
Point | endPoint | End point of arrow shape. |
float | arrowTipWidth | The tip width of the arrow shape. |
Type | Condition |
---|---|
ArgumentException | Thrown when the arrowTipWidth value is less than or equal to zero |