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.
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;
|
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 |