Graphics.FillRectangles Método
Definição
Sobrecargas
| FillRectangles(Brush, RectangleF[]) |
Preenche os interiores de uma série de retângulos especificados por estruturas RectangleF.Fills the interiors of a series of rectangles specified by RectangleF structures. |
| FillRectangles(Brush, Rectangle[]) |
Preenche os interiores de uma série de retângulos especificados por estruturas Rectangle.Fills the interiors of a series of rectangles specified by Rectangle structures. |
FillRectangles(Brush, RectangleF[])
Preenche os interiores de uma série de retângulos especificados por estruturas RectangleF.Fills the interiors of a series of rectangles specified by RectangleF structures.
public:
void FillRectangles(System::Drawing::Brush ^ brush, cli::array <System::Drawing::RectangleF> ^ rects);
public void FillRectangles (System.Drawing.Brush brush, System.Drawing.RectangleF[] rects);
member this.FillRectangles : System.Drawing.Brush * System.Drawing.RectangleF[] -> unit
Public Sub FillRectangles (brush As Brush, rects As RectangleF())
Parâmetros
- brush
- Brush
Brush que determina as características do preenchimento.Brush that determines the characteristics of the fill.
- rects
- RectangleF[]
Uma matriz de estruturas RectangleF que representa os retângulos a serem preenchidos.Array of RectangleF structures that represent the rectangles to fill.
Exceções
Rects é uma matriz de tamanho zero.Rects is a zero-length array.
Exemplos
O exemplo de código a seguir foi projetado para uso com Windows Forms, e ele requer PaintEventArgs e , que é um parâmetro do Paint manipulador de eventos.The following code example is designed for use with Windows Forms, and it requires PaintEventArgse, which is a parameter of the Paint event handler. O código executa a seguinte ação:The code performs the following action:
Cria um pincel azul sólido.Creates a solid blue brush.
Cria uma matriz de três retângulos.Creates an array of three rectangles.
Preenche as três áreas retangulares na tela.Fills the three rectangular areas on the screen.
public:
void FillRectanglesRectangleF( PaintEventArgs^ e )
{
// Create solid brush.
SolidBrush^ blueBrush = gcnew SolidBrush( Color::Blue );
// Create array of rectangles.
array<RectangleF>^ rects = {RectangleF(0.0F,0.0F,100.0F,200.0F),RectangleF(100.0F,200.0F,250.0F,50.0F),RectangleF(300.0F,0.0F,50.0F,100.0F)};
// Fill rectangles to screen.
e->Graphics->FillRectangles( blueBrush, rects );
}
private void FillRectanglesRectangleF(PaintEventArgs e)
{
// Create solid brush.
SolidBrush blueBrush = new SolidBrush(Color.Blue);
// Create array of rectangles.
RectangleF[] rects = { new RectangleF(0.0F, 0.0F, 100.0F, 200.0F), new RectangleF(100.0F, 200.0F, 250.0F, 50.0F), new RectangleF(300.0F, 0.0F, 50.0F, 100.0F) };
// Fill rectangles to screen.
e.Graphics.FillRectangles(blueBrush, rects);
}
Private Sub FillRectanglesRectangleF(ByVal e As PaintEventArgs)
' Create solid brush.
Dim blueBrush As New SolidBrush(Color.Blue)
' Create array of rectangles.
Dim rects As RectangleF() = {New RectangleF(0.0F, 0.0F, 100.0F, 200.0F), _
New RectangleF(100.0F, 200.0F, 250.0F, 50.0F), _
New RectangleF(300.0F, 0.0F, 50.0F, 100.0F)}
' Fill rectangles to screen.
e.Graphics.FillRectangles(blueBrush, rects)
End Sub
Aplica-se a
FillRectangles(Brush, Rectangle[])
public:
void FillRectangles(System::Drawing::Brush ^ brush, cli::array <System::Drawing::Rectangle> ^ rects);
public void FillRectangles (System.Drawing.Brush brush, System.Drawing.Rectangle[] rects);
member this.FillRectangles : System.Drawing.Brush * System.Drawing.Rectangle[] -> unit
Public Sub FillRectangles (brush As Brush, rects As Rectangle())
Parâmetros
- brush
- Brush
Brush que determina as características do preenchimento.Brush that determines the characteristics of the fill.
- rects
- Rectangle[]
Uma matriz de estruturas Rectangle que representa os retângulos a serem preenchidos.Array of Rectangle structures that represent the rectangles to fill.
Exceções
rects é uma matriz de tamanho zero.rects is a zero-length array.
Exemplos
O exemplo de código a seguir foi projetado para uso com Windows Forms, e ele requer PaintEventArgs e , que é um parâmetro do Paint manipulador de eventos.The following code example is designed for use with Windows Forms, and it requires PaintEventArgse, which is a parameter of the Paint event handler. O código executa a seguinte ação:The code performs the following action:
Cria um pincel azul sólido.Creates a solid blue brush.
Cria uma matriz de três retângulos.Creates an array of three rectangles.
Preenche as três áreas retangulares na tela.Fills the three rectangular areas on the screen.
public:
void FillRectanglesRectangle( PaintEventArgs^ e )
{
// Create solid brush.
SolidBrush^ blueBrush = gcnew SolidBrush( Color::Blue );
// Create array of rectangles.
array<Rectangle>^ rects = {Rectangle(0,0,100,200),Rectangle(100,200,250,50),Rectangle(300,0,50,100)};
// Fill rectangles to screen.
e->Graphics->FillRectangles( blueBrush, rects );
}
private void FillRectanglesRectangle(PaintEventArgs e)
{
// Create solid brush.
SolidBrush blueBrush = new SolidBrush(Color.Blue);
// Create array of rectangles.
Rectangle[] rects = { new Rectangle(0, 0, 100, 200), new Rectangle(100, 200, 250, 50), new Rectangle(300, 0, 50, 100) };
// Fill rectangles to screen.
e.Graphics.FillRectangles(blueBrush, rects);
}
Private Sub FillRectanglesRectangle(ByVal e As PaintEventArgs)
' Create solid brush.
Dim blueBrush As New SolidBrush(Color.Blue)
' Create array of rectangles.
Dim rects As Rectangle() = {New Rectangle(0, 0, 100, 200), _
New Rectangle(100, 200, 250, 50), _
New Rectangle(300, 0, 50, 100)}
' Fill rectangles to screen.
e.Graphics.FillRectangles(blueBrush, rects)
End Sub