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:
AT_PDF_FIXED |
left |
Left value |
AT_PDF_FIXED |
right |
Right value |
AT_PDF_FIXED |
top |
Top value |
AT_PDF_FIXED |
bottom |
Bottom value |