Nevron .NET Vision
Nevron.GraphicsCore Namespace / NGraphicsPath Class / AddEllipseSegment Method / AddEllipseSegment(Double,Double,Double,Double,Double,Double) Method
the x coordinate of the ellipse
the y coordinate of the ellipse
the width of the ellipse
the height of the ellipse
start angle (in radians)
sweep angle (in radians)


In This Topic
    AddEllipseSegment(Double,Double,Double,Double,Double,Double) Method
    In This Topic
    Adds the elliptical segment from an ellipse with the specified bounds.
    Syntax
    'Declaration
     
    
    Public Overloads Sub AddEllipseSegment( _
       ByVal x As System.Double, _
       ByVal y As System.Double, _
       ByVal width As System.Double, _
       ByVal height As System.Double, _
       ByVal startAngle As System.Double, _
       ByVal sweepAngle As System.Double _
    ) 
    'Usage
     
    
    Dim instance As NGraphicsPath
    Dim x As System.Double
    Dim y As System.Double
    Dim width As System.Double
    Dim height As System.Double
    Dim startAngle As System.Double
    Dim sweepAngle As System.Double
     
    instance.AddEllipseSegment(x, y, width, height, startAngle, sweepAngle)
    public void AddEllipseSegment( 
       System.double x,
       System.double y,
       System.double width,
       System.double height,
       System.double startAngle,
       System.double sweepAngle
    )

    Parameters

    x
    the x coordinate of the ellipse
    y
    the y coordinate of the ellipse
    width
    the width of the ellipse
    height
    the height of the ellipse
    startAngle
    start angle (in radians)
    sweepAngle
    sweep angle (in radians)
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also