ComponentOne MultiSelect for WinForms
C1.Framework.Drawing.Gdi.DeviceContexts Namespace / DummyDeviceContext Class / PaintPolygon Method
A System.Drawing.Point structures that specify the vertices of the polygon.

In This Topic
    PaintPolygon Method (DummyDeviceContext)
    In This Topic
    Paints a polygon consisting of two or more vertices connected by straight lines. The polygon is outlined by using the current pen and filled by using the current brush and polygon fill mode.
    Syntax
    'Declaration
     
    
    Public Sub PaintPolygon( _
       ByVal vertices() As Point _
    ) 
    public void PaintPolygon( 
       Point[] vertices
    )

    Parameters

    vertices
    A System.Drawing.Point structures that specify the vertices of the polygon.
    Remarks

    The polygon is closed automatically by drawing a line from the last vertex to the first.

    Windows 95/98/Me: PaintPolygon cannot draw more than a certain number of points. The limit depends on the line width (that is, the width of the pen selected into the DC) Line width Maximum points allowed line width is 1 16K line width > 1 (that is, wideline) and device supports wideline 16K line width > 1 but device does not support wideline approximately 1360 (that is, approximately 16K/12)

    Any extra points are ignored. To draw a line with more points, divide the data into groups that have less than the maximum number of points and call the function for each group of points. Remember to connect the line segments.

    See Also