Documents for PDF .NET Edition
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Common Namespace / Quadrilateral Structure / Quadrilateral Constructor / Quadrilateral Constructor(PointF,PointF,PointF,PointF)
The rectangle's bottom left corner.
The rectangle's top left corner.
The rectangle's top right corner.
The rectangle's bottom right corner.

In This Topic
    Quadrilateral Constructor(PointF,PointF,PointF,PointF)
    In This Topic
    Initializes a new instance of the Quadrilateral struct from the four corners of a rectangle.

    The vertices's of the quadrilateral correspond to the corners of the rectangle clockwise starting from the bottom left vertex.

    Syntax
    'Declaration
     
    Public Function New( _
       ByVal bottomLeft As System.Drawing.PointF, _
       ByVal topLeft As System.Drawing.PointF, _
       ByVal topRight As System.Drawing.PointF, _
       ByVal bottomRight As System.Drawing.PointF _
    )
    public Quadrilateral( 
       System.Drawing.PointF bottomLeft,
       System.Drawing.PointF topLeft,
       System.Drawing.PointF topRight,
       System.Drawing.PointF bottomRight
    )

    Parameters

    bottomLeft
    The rectangle's bottom left corner.
    topLeft
    The rectangle's top left corner.
    topRight
    The rectangle's top right corner.
    bottomRight
    The rectangle's bottom right corner.
    See Also