RectHelper.Intersect(Rect, Rect) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回两个相交的指定 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
参数
返回
一个 Rect,表示 和 rect
相交的区域target
。 如果没有交集,可以为 空 值。