Property | Type | Description | |
---|---|---|---|
Empty |
Property | Type | Description |
---|
Method | Description | |
---|---|---|
Contains ( |
Determines if a PointF is contained within the current RectangleF.
|
|
Contains ( |
Determines if a RectangleF is entirely contained within this RectangleF.
|
|
Contains ( float x, float y ) : bool |
Determines if the position represented by x and y is contained within the current RectangleF. This method is entirely inclusive. If the position represented by the x and y values is on the edge of, or entirely within the current RectangleF, then this method will return true. |
|
Equals ( Object obj ) : bool |
Determines if the current RectangleF is equal to the specified
|
|
FromLTRB ( float left, float top, float right, float bottom ) : |
Constructs a new instance of RectangleF from the specified Left, Top, Right, and Bottom values.
|
|
GetHashCode ( ) : int |
Gets a hash code for the current RectangleF.
|
|
Inflate ( |
Increases the Size of the Rectangle by the specified values.
|
|
Inflate ( |
Increases the Size of the RectangleF by the specified Drawing.SizeF.
|
|
Inflate ( float width, float height ) : |
Increases the Size of the RectangleF by the specified values.
|
|
Intersect ( |
Creates a new RectangleF which is the area that overlaps this and the provided RectangleF objects.
|
|
Intersect ( |
Creates a new RectangleF which is the area that overlaps the provided RectangleF objects.
|
|
IntersectsWith ( |
Determines if any corner of the provided RectangleF overlaps this RectangleF.
|
|
Offset ( |
Moves this RectangleF by the specified PointF.
|
|
Offset ( float x, float y ) : |
Moves this RectangleF by the specified values.
|
|
RectangleF ( |
Constructs a new instance of RectangleF from the specified PointF and SizeF.
|
|
RectangleF ( float x, float y, float width, float height ) : System |
Constructs a new instance of RectangleF from the specified X, Y, Width and Height.
|
|
ToString ( ) : string |
Gets a string representation of a RectangleF.
|
|
Union ( |
Gets a RectangleF structure that contains the union of two RectangleF structures.
|
|
operator ( ) : bool |
Determines if two RectangleF structures are equivalent.
|
public Contains ( |
||
rect | The |
|
return | bool |
public Contains ( float x, float y ) : bool | ||
x | float | The x value of the position to test. |
y | float | The y value of the position to test. |
return | bool |
public Equals ( Object obj ) : bool | ||
obj | Object | The object to compare to the current |
return | bool |
public static FromLTRB ( float left, float top, float right, float bottom ) : |
||
left | float | The |
top | float | The |
right | float | The |
bottom | float | The |
return |
public static Inflate ( |
||
rect | The |
|
width | float | The |
height | float | The |
return |
public Inflate ( |
||
size | The |
|
return |
public Inflate ( float width, float height ) : |
||
width | float | The |
height | float | The |
return |
public Intersect ( |
||
rect | The |
|
return |
public static Intersect ( |
||
a | The first |
|
b | The second |
|
return |
public IntersectsWith ( |
||
rect | The |
|
return | bool |
public Offset ( |
||
pos | The |
|
return |
public Offset ( float x, float y ) : |
||
x | float | The |
y | float | The |
return |
public RectangleF ( |
||
location | The |
|
size | The |
|
return | System |
public RectangleF ( float x, float y, float width, float height ) : System | ||
x | float | A value representing the |
y | float | A value representing the |
width | float | A value representing the |
height | float | A value representing the |
return | System |
public static Union ( |
||
a | The first |
|
b | The second |
|
return |