Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Graphics Namespace / RenderContextBase Class / DrawLineStrip Method / DrawLineStrip(Point2D[],Int32,Int32) Method
Array of vertices to draw
The index of the first vertex to draw
The number of the vertices to draw

In This Topic
    DrawLineStrip(Point2D[],Int32,Int32) Method
    In This Topic
    Draws a line strip of devDept.Geometry.Point2D .
    Syntax
    'Declaration
     
    Public Overloads MustOverride Sub DrawLineStrip( _
       ByVal vertices() As Point2D, _
       ByVal first As Integer, _
       ByVal count As Integer _
    ) 
    public abstract void DrawLineStrip( 
       Point2D[] vertices,
       int first,
       int count
    )

    Parameters

    vertices
    Array of vertices to draw
    first
    The index of the first vertex to draw
    count
    The number of the vertices to draw
    See Also