RectangleF.Intersect Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Determina a estrutura RectangleF que representa a interseção de dois retângulos.
Sobrecargas
Intersect(RectangleF) |
Substitui essa estrutura RectangleF pela interseção de si mesma e pela estrutura de RectangleF especificada. |
Intersect(RectangleF, RectangleF) |
Retorna uma estrutura RectangleF que representa a interseção de dois retângulos. Se não houver interseção e RectangleF vazias for retornada. |
Intersect(RectangleF)
- Origem:
- RectangleF.cs
- Origem:
- RectangleF.cs
- Origem:
- RectangleF.cs
Substitui essa estrutura RectangleF pela interseção de si mesma e pela estrutura de RectangleF especificada.
public:
void Intersect(System::Drawing::RectangleF rect);
public void Intersect (System.Drawing.RectangleF rect);
member this.Intersect : System.Drawing.RectangleF -> unit
Public Sub Intersect (rect As RectangleF)
Parâmetros
- rect
- RectangleF
O retângulo a ser cruzado.
Aplica-se a
Intersect(RectangleF, RectangleF)
- Origem:
- RectangleF.cs
- Origem:
- RectangleF.cs
- Origem:
- RectangleF.cs
Retorna uma estrutura RectangleF que representa a interseção de dois retângulos. Se não houver interseção e RectangleF vazias for retornada.
public:
static System::Drawing::RectangleF Intersect(System::Drawing::RectangleF a, System::Drawing::RectangleF b);
public static System.Drawing.RectangleF Intersect (System.Drawing.RectangleF a, System.Drawing.RectangleF b);
static member Intersect : System.Drawing.RectangleF * System.Drawing.RectangleF -> System.Drawing.RectangleF
Public Shared Function Intersect (a As RectangleF, b As RectangleF) As RectangleF
Parâmetros
Um retângulo a ser intersect.
Um retângulo a ser intersect.
Retornos
Um terceiro RectangleF estrutura do tamanho do qual representa a área sobreposta dos dois retângulos especificados.
Exemplos
Este exemplo foi projetado para uso com o Windows Forms e requer PaintEventArgse
, um objeto de evento OnPaint. O código cria dois objetos RectangleF e os desenha para a tela em preto e vermelho. Observe que eles precisam ser convertidos em objetos Rectangle para fins de desenho. Em seguida, o código cria um terceiro RectangleF usando o método Intersect, converte-o em um Rectanglee o desenha para a tela em azul. Observe que o terceiro retângulo (azul) é a área de sobreposição dos outros dois retângulos:
public:
void RectangleFIntersectExample( PaintEventArgs^ e )
{
// Create two rectangles.
RectangleF firstRectangleF = RectangleF(0,0,75,50);
RectangleF secondRectangleF = RectangleF(50,20,50,50);
// Convert the RectangleF structures to Rectangle structures and draw them to the
// screen.
Rectangle firstRect = Rectangle::Truncate( firstRectangleF );
Rectangle secondRect = Rectangle::Truncate( secondRectangleF );
e->Graphics->DrawRectangle( Pens::Black, firstRect );
e->Graphics->DrawRectangle( Pens::Red, secondRect );
// Get the intersection.
RectangleF intersectRectangleF = RectangleF::Intersect( firstRectangleF, secondRectangleF );
// Draw the intersectRectangleF to the screen.
Rectangle intersectRect = Rectangle::Truncate( intersectRectangleF );
e->Graphics->DrawRectangle( Pens::Blue, intersectRect );
}
public void RectangleFIntersectExample(PaintEventArgs e)
{
// Create two rectangles.
RectangleF firstRectangleF = new RectangleF(0, 0, 75, 50);
RectangleF secondRectangleF = new RectangleF(50, 20, 50, 50);
// Convert the RectangleF structures to Rectangle structures and draw them to the
// screen.
Rectangle firstRect = Rectangle.Truncate(firstRectangleF);
Rectangle secondRect = Rectangle.Truncate(secondRectangleF);
e.Graphics.DrawRectangle(Pens.Black, firstRect);
e.Graphics.DrawRectangle(Pens.Red, secondRect);
// Get the intersection.
RectangleF intersectRectangleF =
RectangleF.Intersect(firstRectangleF,
secondRectangleF);
// Draw the intersectRectangleF to the screen.
Rectangle intersectRect =
Rectangle.Truncate(intersectRectangleF);
e.Graphics.DrawRectangle(Pens.Blue, intersectRect);
}
Public Sub RectangleFIntersectExample(ByVal e As PaintEventArgs)
' Create two rectangles.
Dim firstRectangleF As New RectangleF(0, 0, 75, 50)
Dim secondRectangleF As New RectangleF(50, 20, 50, 50)
' Convert the RectangleF structures to Rectangle structures and
' draw them to the screen.
Dim firstRect As Rectangle = Rectangle.Truncate(firstRectangleF)
Dim secondRect As Rectangle = Rectangle.Truncate(secondRectangleF)
e.Graphics.DrawRectangle(Pens.Black, firstRect)
e.Graphics.DrawRectangle(Pens.Red, secondRect)
' Get the intersection.
Dim intersectRectangleF As RectangleF = _
RectangleF.Intersect(firstRectangleF, secondRectangleF)
' Draw the intersectRectangleF to the screen.
Dim intersectRect As Rectangle = _
Rectangle.Truncate(intersectRectangleF)
e.Graphics.DrawRectangle(Pens.Blue, intersectRect)
End Sub