Metodo Region::IsVisible(constRect&,constGraphics*) (gdiplusheaders.h)
Il metodo Region::IsVisible determina se un rettangolo interseca questa area.
Sintassi
BOOL IsVisible(
[in, ref] const Rect & rect,
[in] const Graphics *g
);
Parametri
[in, ref] rect
Tipo: const Rect
Riferimento a un rettangolo da testare.
[in] g
facoltativo. Puntatore a un oggetto Graphics che contiene le trasformazioni del mondo e della pagina necessarie per calcolare le coordinate del dispositivo di questa area e il rettangolo. Il valore predefinito è NULL.
Valore restituito
Tipo: BOOL
Se il rettangolo interseca questa area, questo metodo restituisce TRUE; in caso contrario, restituisce FALSE.
Commenti
Esempio
L'esempio seguente crea un'area da un percorso e quindi verifica se un rettangolo interseca l'area.
VOID Example_IsVisibleRect(HDC hdc)
{
Graphics graphics(hdc);
Point points[] = {
Point(110, 20),
Point(120, 30),
Point(100, 60),
Point(120, 70),
Point(150, 60),
Point(140, 10)};
GraphicsPath path;
SolidBrush solidBrush(Color(255, 255, 0, 0));
path.AddClosedCurve(points, 6);
// Create a region from a path.
Region pathRegion(&path);
graphics.FillRegion(&solidBrush, &pathRegion);
// Check to see whether a rectangle intersects the region.
Rect testRect(65, 25, 70, 30);
if(pathRegion.IsVisible(testRect, &graphics))
{
// All or part of the rectangle is in the region.
}
// Draw the test rectangle.
Pen pen(Color(255, 0, 0, 0));
graphics.DrawRectangle(&pen, testRect);
}
Requisiti
Client minimo supportato | Windows XP, Windows 2000 Professional [solo app desktop] |
Server minimo supportato | Windows 2000 Server [solo app desktop] |
Piattaforma di destinazione | Windows |
Intestazione | gdiplusheaders.h (include Gdiplus.h) |
Libreria | Gdiplus.lib |
DLL | Gdiplus.dll |