SKRect.Contains Method

Definition

Overloads

Contains(SKPoint)

Determines whether the specified point is inside this rectangle.

Contains(SKRect)

Determines whether the specified rectangle is inside this rectangle.

Contains(Single, Single)

Determines whether the specified coordinates are inside this rectangle.

Contains(SKPoint)

Determines whether the specified point is inside this rectangle.

public bool Contains (SkiaSharp.SKPoint pt);
public readonly bool Contains (SkiaSharp.SKPoint pt);

Parameters

pt
SKPoint

The point to test.

Returns

Returns true if the point is inside this rectangle, otherwise false.

Applies to

Contains(SKRect)

Determines whether the specified rectangle is inside this rectangle.

public bool Contains (SkiaSharp.SKRect rect);
public readonly bool Contains (SkiaSharp.SKRect rect);

Parameters

rect
SKRect

The rectangle to test.

Returns

Returns true if the rectangle is inside this rectangle, otherwise false.

Applies to

Contains(Single, Single)

Determines whether the specified coordinates are inside this rectangle.

public bool Contains (float x, float y);
public readonly bool Contains (float x, float y);

Parameters

x
Single

The x-coordinate.

y
Single

The y-coordinate.

Returns

Returns true if the coordinates are inside this rectangle, otherwise false.

Applies to