Metodo Region::IsVisible(constPoint&,constGraphics*) (gdiplusheaders.h)
Il metodo Region::IsVisible determina se un punto si trova all'interno di questa area.
Sintassi
BOOL IsVisible(
[in, ref] const Point & point,
[in] const Graphics *g
);
Parametri
[in, ref] point
Tipo: const Point
Riferimento a un punto 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 punto. Il valore predefinito è NULL.
Valore restituito
Tipo: BOOL
Se il punto si trova all'interno di 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 punto si trova nell'area.
VOID Example_IsVisiblePoint(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 point is in the region.
Point testPoint(125, 30);
if(pathRegion.IsVisible(testPoint, &graphics))
{
// The test point is in the region.
}
// Fill a small circle centered at the test point.
SolidBrush brush(Color(255, 0, 0, 0));
graphics.FillEllipse(&brush, testPoint.X - 4, testPoint.Y - 4, 8, 8);
}
Requisiti
Requisito | Valore |
---|---|
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 |