ImageGear for C and C++ on Windows v21.0 - Updated
API Reference Guide / PDF Component API Reference / PDF Component Structures Reference / AT_PDF_FIXEDRECT
In This Topic
    AT_PDF_FIXEDRECT
    In This Topic

    A rectangle represented by the coordinates of its four sides; a rectangle differs from a quadrilateral in that the former must always have horizontal and vertical sides, and opposite sides must be parallel.

    Declaration:

     
    Copy Code
    typedef struct tagAT_PDF_FIXEDRECT
    {
            AT_PDF_FIXED left;
            AT_PDF_FIXED top;
            AT_PDF_FIXED right;
            AT_PDF_FIXED bottom;
    } AT_PDF_FIXEDRECT;
    typedef AT_PDF_FIXEDRECT FAR* LPAT_PDF_FIXEDRECT;
    

    Members:

    Name Type Description
    left AT_PDF_FIXED Left value
    right AT_PDF_FIXED Right value
    top AT_PDF_FIXED Top value
    bottom AT_PDF_FIXED Bottom value