System::Drawing::Rectangle::Intersect method

Rectangle::Intersect(const Rectangle&) method

用当前对象所表示的矩形与指定对象所表示的矩形相交得到的矩形替换当前对象所表示的矩形。

void System::Drawing::Rectangle::Intersect(const Rectangle &rect)
参数类型描述
rectconst Rectangle&表示用于与当前对象所表示的矩形相交的 Rectangle 对象

另见

Rectangle::Intersect(const Rectangle&, const Rectangle&) method

返回指定矩形相交的结果矩形。

static Rectangle System::Drawing::Rectangle::Intersect(const Rectangle &a, const Rectangle &b)
参数类型描述
aconst Rectangle&第一个要相交的矩形
bconst Rectangle&第二个要相交的矩形

ReturnValue

ab 相交的结果

另见