RectF Class

Definition

RectF holds four float coordinates for a rectangle.

[Android.Runtime.Register("android/graphics/RectF", DoNotGenerateAcw=true)]
public class RectF : Java.Lang.Object, Android.OS.IParcelable, IDisposable, Java.Interop.IJavaPeerable
[<Android.Runtime.Register("android/graphics/RectF", DoNotGenerateAcw=true)>]
type RectF = class
    inherit Object
    interface IParcelable
    interface IJavaObject
    interface IDisposable
    interface IJavaPeerable
Inheritance
RectF
Attributes
Implements

Remarks

RectF holds four float coordinates for a rectangle. The rectangle is represented by the coordinates of its 4 edges (left, top, right, bottom). These fields can be accessed directly. Use width() and height() to retrieve the rectangle's width and height. Note: most methods do not check to see that the coordinates are sorted correctly (i.e. left <= right and top <= bottom).

Java documentation for android.graphics.RectF.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Constructors

RectF()

Create a new empty RectF.

RectF(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

RectF(Rect)

Create a new empty RectF.

RectF(RectF)

Create a new rectangle, initialized with the values in the specified rectangle (which is left unmodified).

RectF(Single, Single, Single, Single)

Create a new rectangle with the specified coordinates.

Properties

Bottom
Class

Returns the runtime class of this Object.

(Inherited from Object)
Creator
Handle

The handle to the underlying Android instance.

(Inherited from Object)
IsEmpty

Returns true if the rectangle is empty (left >= right or top >= bottom)

JniIdentityHashCode (Inherited from Object)
JniPeerMembers
Left
PeerReference (Inherited from Object)
Right
ThresholdClass

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

ThresholdType

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

Top

Methods

CenterX()
CenterY()
Clone()

Creates and returns a copy of this object.

(Inherited from Object)
Contains(RectF)

Returns true iff the specified rectangle r is inside or equal to this rectangle.

Contains(Single, Single)

Returns true if (x,y) is inside the rectangle.

Contains(Single, Single, Single, Single)

Returns true iff the 4 specified sides of a rectangle are inside or equal to this rectangle.

DescribeContents()

Parcelable interface methods

Dispose() (Inherited from Object)
Dispose(Boolean) (Inherited from Object)
Equals(Object)

Indicates whether some other object is "equal to" this one.

(Inherited from Object)
GetHashCode()

Returns a hash code value for the object.

(Inherited from Object)
Height()
Inset(Single, Single)

Inset the rectangle by (dx,dy).

Intersect(RectF)

If the specified rectangle intersects this rectangle, return true and set this rectangle to that intersection, otherwise return false and do not change this rectangle.

Intersect(Single, Single, Single, Single)

If the rectangle specified by left,top,right,bottom intersects this rectangle, return true and set this rectangle to that intersection, otherwise return false and do not change this rectangle.

Intersects(RectF, RectF)

Returns true iff the two specified rectangles intersect.

Intersects(Single, Single, Single, Single)

Returns true if this rectangle intersects the specified rectangle.

JavaFinalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

(Inherited from Object)
Notify()

Wakes up a single thread that is waiting on this object's monitor.

(Inherited from Object)
NotifyAll()

Wakes up all threads that are waiting on this object's monitor.

(Inherited from Object)
Offset(Single, Single)

Offset the rectangle by adding dx to its left and right coordinates, and adding dy to its top and bottom coordinates.

OffsetTo(Single, Single)

Offset the rectangle to a specific (left, top) position, keeping its width and height the same.

ReadFromParcel(Parcel)

Set the rectangle's coordinates from the data stored in the specified parcel.

Round(Rect)

Set the dst integer Rect by rounding this rectangle's coordinates to their nearest integer values.

RoundOut(Rect)

Set the dst integer Rect by rounding "out" this rectangle, choosing the floor of top and left, and the ceiling of right and bottom.

Set(Rect)

Copy the coordinates from src into this rectangle.

Set(RectF)

Copy the coordinates from src into this rectangle.

Set(Single, Single, Single, Single)

Set the rectangle's coordinates to the specified values.

SetEmpty()

Set the rectangle to (0,0,0,0)

SetHandle(IntPtr, JniHandleOwnership)

Sets the Handle property.

(Inherited from Object)
SetIntersect(RectF, RectF)

If rectangles a and b intersect, return true and set this rectangle to that intersection, otherwise return false and do not change this rectangle.

Sort()

Swap top/bottom or left/right if there are flipped (i.

ToArray<T>() (Inherited from Object)
ToShortString()

Return a string representation of the rectangle in a compact form.

ToString()

Returns a string representation of the object.

(Inherited from Object)
Union(RectF)

Update this Rect to enclose itself and the specified rectangle.

Union(Single, Single)

Update this Rect to enclose itself and the [x,y] coordinate.

Union(Single, Single, Single, Single)

Update this Rect to enclose itself and the specified rectangle.

UnregisterFromRuntime() (Inherited from Object)
Wait()

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>.

(Inherited from Object)
Wait(Int64)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
Wait(Int64, Int32)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
Width()
WriteToParcel(Parcel, ParcelableWriteFlags)

Write this rectangle to the specified parcel.

Explicit Interface Implementations

IJavaPeerable.Disposed() (Inherited from Object)
IJavaPeerable.DisposeUnlessReferenced() (Inherited from Object)
IJavaPeerable.Finalized() (Inherited from Object)
IJavaPeerable.JniManagedPeerState (Inherited from Object)
IJavaPeerable.SetJniIdentityHashCode(Int32) (Inherited from Object)
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) (Inherited from Object)
IJavaPeerable.SetPeerReference(JniObjectReference) (Inherited from Object)

Extension Methods

JavaCast<TResult>(IJavaObject)

Performs an Android runtime-checked type conversion.

JavaCast<TResult>(IJavaObject)
GetJniTypeName(IJavaPeerable)

Applies to