Rectangle
Rectangle structure
Stores a set of four integers that represent the location and size of a rectangle.
Constructors
Name | Description |
---|
Rectangle(int, int, int, int) | Initializes a new instance of the Rectangle structure with the specified location and size. |
Properties
Name | Description |
---|
static Empty { get; } | Gets a new instance of the Rectangle structure that has X , Y , Width and Height values set to zero. |
Bottom { get; set; } | Gets or sets the y-coordinate that is the sum of the Y and Height property values of this Rectangle structure. |
Height { get; set; } | Gets or sets the height of this Rectangle structure. |
IsEmpty { get; } | Gets a value indicating whether all numeric properties of this Rectangle have values of zero. |
Left { get; set; } | Gets or sets the x-coordinate of the left edge of this !:Aspose.OCR..Rectangle structure. |
Right { get; set; } | Gets or sets the x-coordinate that is the sum of X and Width property values of this Rectangle structure. |
Top { get; set; } | Gets or sets the y-coordinate of the top edge of this Rectangle structure. |
Width { get; set; } | Gets or sets the width of this Rectangle structure. |
X { get; set; } | Gets or sets the x-coordinate of the upper-left corner of this Rectangle structure. |
Y { get; set; } | Gets or sets the y-coordinate of the upper-left corner of this Rectangle structure. |
Methods
Fields
Name | Description |
---|
height | The rectangle width. |
width | The rectangle height. |
x | The rectangle x location. |
y | The rectangle y location. |
See Also