public class RectangleArea extends Object
Represents rectangle area via left,top,height,width set of data
Modifier and Type | Field and Description |
---|---|
float |
Height
Gets or sets a float value that indicates the height of the rectangle area.
|
float |
Left
Gets or sets a float value that indicates the left position of the rectangle area.
|
float |
Top
Gets or sets a float value that indicates the top position of the rectangle area.
|
float |
Width
Gets or sets a float value that indicates the width of the rectangle area.
|
Constructor and Description |
---|
RectangleArea()
Initializes a new instance of the
RectangleArea class. |
RectangleArea(float left,
float top,
float width,
float height)
Initializes a new instance of the
RectangleArea class. |
public float Left
Gets or sets a float value that indicates the left position of the rectangle area.
public float Width
Gets or sets a float value that indicates the width of the rectangle area.
public float Height
Gets or sets a float value that indicates the height of the rectangle area.
public float Top
Gets or sets a float value that indicates the top position of the rectangle area.
public RectangleArea()
Initializes a new instance of the RectangleArea
class.
public RectangleArea(float left, float top, float width, float height)
Initializes a new instance of the RectangleArea
class.
left
- The left position of the rectangle area.top
- The top position of the rectangle area.width
- The width of the rectangle area.height
- The height of the rectangle area.Copyright © 2014 Aspose. All Rights Reserved.