Partager via


Méthode Region ::Complement(constRect&) (gdiplusheaders.h)

La méthode Region ::Complement met à jour cette région vers la partie de l’intérieur du rectangle spécifié qui n’entrecroise pas cette région.

Syntaxe

Status Complement(
  const Rect & rect
);

Paramètres

rect

Référence à un rectangle à utiliser pour mettre à jour cet objet Region .

Valeur retournée

Type : État

Si la méthode réussit, elle retourne Ok, qui est un élément de l’énumération Status .

Si la méthode échoue, elle retourne l’un des autres éléments de l’énumération Status .

Notes

Exemples

L’exemple suivant crée une région à partir d’un chemin d’accès, puis utilise un rectangle pour mettre à jour la région.

VOID Example_ComplementRect(HDC hdc)
{
   Graphics graphics(hdc);

   SolidBrush solidBrush(Color(255, 255, 0, 0));

   Point points[] = {
      Point(110, 20),
      Point(120, 30),
      Point(100, 60),
      Point(120, 70),
      Point(150, 60),
      Point(140, 10)};

   Rect rect(65, 15, 70, 45);

   GraphicsPath path;

   path.AddClosedCurve(points, 6);

   // Create a region from a path.
   Region region(&path); 

   // Update the region so that it consists of all points inside the 
   // rectangle but outside the path region.
   region.Complement(rect);

   graphics.FillRegion(&solidBrush, &region);
}

Configuration requise

Condition requise Valeur
En-tête gdiplusheaders.h

Voir aussi

Région

Rect

État