RectHelper.Intersect(Rect, Rect) 方法

定义

返回两个相交的指定 Rect 值的区域,作为新的 Rect。 C# 代码应改用 Rect.Intersect

public:
 static Rect Intersect(Rect target, Rect rect);
 static Rect Intersect(Rect const& target, Rect const& rect);
public static Rect Intersect(Rect target, Rect rect);
function intersect(target, rect)
Public Shared Function Intersect (target As Rect, rect As Rect) As Rect

参数

target
Rect

要为交集检查的第一个 Rect

rect
Rect

要检查交集的第二个 Rect

返回

一个 Rect,表示 和 rect 相交的区域target。 如果没有交集,可以为 值。

适用于