Search
ArcTemplate Constructor (Double, Double, Double, Double, Double, Double)
See Also
 





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

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public ArcTemplate (
    double x,
    double y,
    double w,
    double h,
    double a,
    double s
)

Visual Basic  Copy Code

Public New ( _
    x As Double, _
    y As Double, _
    w As Double, _
    h As Double, _
    a As Double, _
    s As Double _
)

 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.

 Remarks

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

 See Also