com.aspose.pdf.elements
Class RectData

java.lang.Object
  extended by com.aspose.pdf.elements.RectData
All Implemented Interfaces:
java.lang.Cloneable

public class RectData
extends java.lang.Object
implements java.lang.Cloneable

Represents a rectangle data structure which specifies the low-left and up-right coordinates.


Constructor Summary
RectData()
           
 
Method Summary
 java.lang.Object clone()
           
 float LowerLeftX()
          Gets a float value that indicates the x-coordinate of the lower-left point.
 void LowerLeftX(float llx)
          Sets a float value that indicates the x-coordinate of the lower-left point.
 float LowerLeftY()
          Gets a float value that indicates the y-coordinate of the lower-left point.
 void LowerLeftY(float lly)
          Sets a float value that indicates the y-coordinate of the lower-left point.
 float UperRightX()
          Gets a float value that indicates the x-coordinate of the upper-right point.
 void UperRightX(float urx)
          Sets a float value that indicates the x-coordinate of the upper-right point.
 float UperRightY()
          Gets a float value that indicates the y-coordinate of the upper-right point.
 void UperRightY(float ury)
          Sets a float value that indicates the y-coordinate of the upper-right point.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RectData

public RectData()
Method Detail

clone

public java.lang.Object clone()
                       throws java.lang.CloneNotSupportedException
Overrides:
clone in class java.lang.Object
Throws:
java.lang.CloneNotSupportedException
See Also:
Object.clone()

LowerLeftX

public float LowerLeftX()
Gets a float value that indicates the x-coordinate of the lower-left point.

Returns:
Returns the llx.

LowerLeftX

public void LowerLeftX(float llx)
Sets a float value that indicates the x-coordinate of the lower-left point.

Parameters:
llx - The llx to set.

LowerLeftY

public float LowerLeftY()
Gets a float value that indicates the y-coordinate of the lower-left point.

Returns:
Returns the lly.

LowerLeftY

public void LowerLeftY(float lly)
Sets a float value that indicates the y-coordinate of the lower-left point.

Parameters:
lly - The lly to set.

UperRightX

public float UperRightX()
Gets a float value that indicates the x-coordinate of the upper-right point.

Returns:
Returns the urx.

UperRightX

public void UperRightX(float urx)
Sets a float value that indicates the x-coordinate of the upper-right point.

Parameters:
urx - The urx to set.

UperRightY

public float UperRightY()
Gets a float value that indicates the y-coordinate of the upper-right point.

Returns:
Returns the ury.

UperRightY

public void UperRightY(float ury)
Sets a float value that indicates the y-coordinate of the upper-right point.

Parameters:
ury - The ury to set.