RectHelper.Contains(Rect, Point) 方法

定义

对于共享坐标引用,返回给定 的点 是否在给定 Rect 的边界内。 C# 代码应改用 Rect.Contains

public:
 static bool Contains(Rect target, Point point);
 static bool Contains(Rect const& target, Point const& point);
public static bool Contains(Rect target, Point point);
function contains(target, point)
Public Shared Function Contains (target As Rect, point As Point) As Boolean

参数

target
Rect

要评估的 Rect

point
Point

用于遏制的指向检查。

返回

Boolean

bool

true 如果 目标 边界内;否则为 false

适用于