Represents a rectangular area on the image.
Declaration:
typedef struct tagBX\_Rectangle {
long Left;
long Top;
long Right;
long Bottom;
} BX\_Rectangle;
Members:
Name | Type | Description |
---|---|---|
Left | long | Specifies the horizontal distance of the left edge of the area from the left edge of the image. |
Top | long | Specifies the vertical distance of the top edge of the area from the top edge of the image. |
Right | long | Specifies the horizontal distance of the right edge of the area from the left edge of the image. |
Bottom | long | Specifies the vertical distance of the bottom edge of the area from the top edge of the image. |