Intersect

Intersect(Rectangle, Rectangle)

Renvoie un tiersRectangle structure qui représente l’intersection de deux autresRectangle structures. S’il n’y a pas d’intersection, un videRectangle est renvoyé.

public static Rectangle Intersect(Rectangle a, Rectangle b)
ParamètreTaperLa description
aRectanglePremier rectangle à se croiser.
bRectangleDeuxième rectangle à couper.

Return_Value

UNRectangle qui représente l’intersection dea etb.

Voir également


Intersect(Rectangle)

Remplace ceciRectangleavec l’intersection de lui-même et du spécifiéRectangle .

public void Intersect(Rectangle rect)
ParamètreTaperLa description
rectRectangleLaRectangle avec laquelle se croiser.

Voir également