CDC::InvertRect 

voidInvertRect(LPCRECTlpRect**);**

Parameters

lpRect

Points to a RECT that contains the logical coordinates of the rectangle to be inverted. You can also pass a CRect object for this parameter.

Remarks

Inverts the contents of the given rectangle. Inversion is a logical NOT operation and flips the bits of each pixel. On monochrome displays, the function makes white pixels black and black pixels white. On color displays, the inversion depends on how colors are generated for the display. Calling InvertRect twice with the same rectangle restores the display to its previous colors.

If the rectangle is empty, nothing is drawn.

Example

// invert rect from 20,20 to 50,50
CRect rect(20, 20, 50, 50);
pDC->InvertRect(rect);

// inverting again restores to normal
::Sleep(1000);
pDC->InvertRect(rect);

CDC OverviewClass MembersHierarchy Chart

See Also   CDC::FillRect, , CRect, RECT