Método Region::IsVisible(constRect&,constGraphics*) (gdiplusheaders.h)
O método Region::IsVisible determina se um retângulo intersecciona essa região.
Sintaxe
BOOL IsVisible(
[in, ref] const Rect & rect,
[in] const Graphics *g
);
Parâmetros
[in, ref] rect
Tipo: const Rect
Referência a um retângulo a ser testado.
[in] g
Tipo: const Graphics*
Opcional. Ponteiro para um objeto Graphics que contém o mundo e as transformações de página necessárias para calcular as coordenadas do dispositivo dessa região e do retângulo. O valor padrão é NULL.
Retornar valor
Tipo: BOOL
Se o retângulo cruza essa região, esse método retorna TRUE; caso contrário, retornará FALSE.
Comentários
Exemplos
O exemplo a seguir cria uma região de um caminho e, em seguida, testa para determinar se um retângulo cruza a região.
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);
}
Requisitos
Cliente mínimo com suporte | Windows XP, Windows 2000 Professional [somente aplicativos da área de trabalho] |
Servidor mínimo com suporte | Windows 2000 Server [somente aplicativos da área de trabalho] |
Plataforma de Destino | Windows |
Cabeçalho | gdiplusheaders.h (inclua Gdiplus.h) |
Biblioteca | Gdiplus.lib |
DLL | Gdiplus.dll |