Search
ArcTemplate Constructor (Single, Single, Single, Single, Single, Single, Color, DashStyle, Single)
See Also
 





Initializes a new instance of the ArcTemplate class with the specified coordinates and visualization settings.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public ArcTemplate (
    float x,
    float y,
    float w,
    float h,
    float a,
    float s,
    Color color,
    DashStyle dashStyle,
    float width
)

Visual Basic  Copy Code

Public New ( _
    x As Single, _
    y As Single, _
    w As Single, _
    h As Single, _
    a As Single, _
    s As Single, _
    color As Color, _
    dashStyle As DashStyle, _
    width As Single _
)

 Parameters

x
The x-coordinate of the upper left corner of the ellipse's bounding rectangle.
y
The y-coordinate of the upper left corner of the ellipse's bounding rectangle.
w
The width of the ellipse's bounding rectangle.
h
The height of the ellipse's bounding rectangle.
a
The clockwise angle, in degrees, between the horizontal axis of the ellipse and the starting point of the arc.
s
The clockwise angle, in degrees, between the starting point and the ending point of the arc.
color
The color of this segment.
dashStyle
The dash style of this segment.
width
The width of this segment.

 Remarks

An arc template is defined by an ellipse and starting and sweeping angles.

 See Also