Sdílet prostřednictvím


Graphics.FillRectangle Metoda

Definice

Vyplní vnitřní část obdélníku určeného dvojicí souřadnic, šířky a výšky.

Přetížení

FillRectangle(Brush, Rectangle)

Vyplní vnitřní část obdélníku určeného strukturou Rectangle.

FillRectangle(Brush, RectangleF)

Vyplní vnitřní část obdélníku určeného strukturou RectangleF.

FillRectangle(Brush, Int32, Int32, Int32, Int32)

Vyplní vnitřní část obdélníku určeného dvojicí souřadnic, šířky a výšky.

FillRectangle(Brush, Single, Single, Single, Single)

Vyplní vnitřní část obdélníku určeného dvojicí souřadnic, šířky a výšky.

FillRectangle(Brush, Rectangle)

Zdroj:
Graphics.cs
Zdroj:
Graphics.cs
Zdroj:
Graphics.cs
Zdroj:
Graphics.cs
Zdroj:
Graphics.cs

Vyplní vnitřní část obdélníku určeného strukturou Rectangle.

public:
 void FillRectangle(System::Drawing::Brush ^ brush, System::Drawing::Rectangle rect);
public void FillRectangle (System.Drawing.Brush brush, System.Drawing.Rectangle rect);
member this.FillRectangle : System.Drawing.Brush * System.Drawing.Rectangle -> unit
Public Sub FillRectangle (brush As Brush, rect As Rectangle)

Parametry

brush
Brush

Brush určující vlastnosti výplně.

rect
Rectangle

Rectangle strukturu, která představuje obdélník, který se má vyplnit.

Výjimky

brush je null.

Příklady

Následující příklad kódu je určený pro použití s Windows Forms a vyžaduje PaintEventArgse, což je parametr obslužné rutiny události Paint. Kód provede následující akci:

  • Vytvoří pevný modrý štětec.

  • Vytvoří obdélník.

  • Vyplní obdélníkovou oblast na obrazovce.

public:
   void FillRectangleRectangle( PaintEventArgs^ e )
   {
      // Create solid brush.
      SolidBrush^ blueBrush = gcnew SolidBrush( Color::Blue );

      // Create rectangle.
      Rectangle rect = Rectangle(0,0,200,200);

      // Fill rectangle to screen.
      e->Graphics->FillRectangle( blueBrush, rect );
   }
private void FillRectangleRectangle(PaintEventArgs e)
{

    // Create solid brush.
    SolidBrush blueBrush = new SolidBrush(Color.Blue);

    // Create rectangle.
    Rectangle rect = new Rectangle(0, 0, 200, 200);

    // Fill rectangle to screen.
    e.Graphics.FillRectangle(blueBrush, rect);
}
Private Sub FillRectangleRectangle(ByVal e As PaintEventArgs)

    ' Create solid brush.
    Dim blueBrush As New SolidBrush(Color.Blue)

    ' Create rectangle.
    Dim rect As New Rectangle(0, 0, 200, 200)

    ' Fill rectangle to screen.
    e.Graphics.FillRectangle(blueBrush, rect)
End Sub

Poznámky

Tato metoda vyplní vnitřní část obdélníku definovaného parametrem rect, včetně zadaného levého horního rohu a až do počítaných dolních a dolních okrajů.

Platí pro

FillRectangle(Brush, RectangleF)

Zdroj:
Graphics.cs
Zdroj:
Graphics.cs
Zdroj:
Graphics.cs
Zdroj:
Graphics.cs
Zdroj:
Graphics.cs

Vyplní vnitřní část obdélníku určeného strukturou RectangleF.

public:
 void FillRectangle(System::Drawing::Brush ^ brush, System::Drawing::RectangleF rect);
public void FillRectangle (System.Drawing.Brush brush, System.Drawing.RectangleF rect);
member this.FillRectangle : System.Drawing.Brush * System.Drawing.RectangleF -> unit
Public Sub FillRectangle (brush As Brush, rect As RectangleF)

Parametry

brush
Brush

Brush určující vlastnosti výplně.

rect
RectangleF

RectangleF strukturu, která představuje obdélník, který se má vyplnit.

Výjimky

brush je null.

Příklady

Následující příklad kódu je určený pro použití s Windows Forms a vyžaduje PaintEventArgse, což je parametr obslužné rutiny události Paint. Kód provede následující akci:

  • Vytvoří pevný modrý štětec.

  • Vytvoří obdélník.

  • Vyplní obdélníkovou oblast na obrazovce.

public:
   void FillRectangleRectangleF( PaintEventArgs^ e )
   {
      // Create solid brush.
      SolidBrush^ blueBrush = gcnew SolidBrush( Color::Blue );

      // Create rectangle.
      RectangleF rect = RectangleF(0.0F,0.0F,200.0F,200.0F);

      // Fill rectangle to screen.
      e->Graphics->FillRectangle( blueBrush, rect );
   }
private void FillRectangleRectangleF(PaintEventArgs e)
{

    // Create solid brush.
    SolidBrush blueBrush = new SolidBrush(Color.Blue);

    // Create rectangle.
    RectangleF rect = new RectangleF(0.0F, 0.0F, 200.0F, 200.0F);

    // Fill rectangle to screen.
    e.Graphics.FillRectangle(blueBrush, rect);
}
Private Sub FillRectangleRectangleF(ByVal e As PaintEventArgs)

    ' Create solid brush.
    Dim blueBrush As New SolidBrush(Color.Blue)

    ' Create rectangle.
    Dim rect As New RectangleF(0.0F, 0.0F, 200.0F, 200.0F)

    ' Fill rectangle to screen.
    e.Graphics.FillRectangle(blueBrush, rect)
End Sub

Poznámky

Tato metoda vyplní vnitřní část obdélníku definovaného parametrem rect, včetně zadaného levého horního rohu a až do počítaných dolních a dolních okrajů.

Platí pro

FillRectangle(Brush, Int32, Int32, Int32, Int32)

Zdroj:
Graphics.cs
Zdroj:
Graphics.cs
Zdroj:
Graphics.cs
Zdroj:
Graphics.cs
Zdroj:
Graphics.cs

Vyplní vnitřní část obdélníku určeného dvojicí souřadnic, šířky a výšky.

public:
 void FillRectangle(System::Drawing::Brush ^ brush, int x, int y, int width, int height);
public void FillRectangle (System.Drawing.Brush brush, int x, int y, int width, int height);
member this.FillRectangle : System.Drawing.Brush * int * int * int * int -> unit
Public Sub FillRectangle (brush As Brush, x As Integer, y As Integer, width As Integer, height As Integer)

Parametry

brush
Brush

Brush určující vlastnosti výplně.

x
Int32

Souřadnice x levého horního rohu obdélníku, který se má vyplnit.

y
Int32

Souřadnice y levého horního rohu obdélníku, který se má vyplnit.

width
Int32

Šířka obdélníku, který se má vyplnit.

height
Int32

Výška obdélníku, který se má vyplnit.

Výjimky

brush je null.

Příklady

Následující příklad kódu je určený pro použití s Windows Forms a vyžaduje PaintEventArgse, což je parametr obslužné rutiny události Paint. Kód provede následující akci:

  • Vytvoří pevný modrý štětec.

  • Vytvoří umístění a velikost obdélníku.

  • Vyplní obdélníkovou oblast na obrazovce.

public:
   void FillRectangleInt( PaintEventArgs^ e )
   {
      // Create solid brush.
      SolidBrush^ blueBrush = gcnew SolidBrush( Color::Blue );

      // Create location and size of rectangle.
      int x = 0;
      int y = 0;
      int width = 200;
      int height = 200;

      // Fill rectangle to screen.
      e->Graphics->FillRectangle( blueBrush, x, y, width, height );
   }
private void FillRectangleInt(PaintEventArgs e)
{

    // Create solid brush.
    SolidBrush blueBrush = new SolidBrush(Color.Blue);

    // Create location and size of rectangle.
    int x = 0;
    int y = 0;
    int width = 200;
    int height = 200;

    // Fill rectangle to screen.
    e.Graphics.FillRectangle(blueBrush, x, y, width, height);
}
Private Sub FillRectangleInt(ByVal e As PaintEventArgs)

    ' Create solid brush.
    Dim blueBrush As New SolidBrush(Color.Blue)

    ' Create location and size of rectangle.
    Dim x As Integer = 0
    Dim y As Integer = 0
    Dim width As Integer = 200
    Dim height As Integer = 200

    ' Fill rectangle to screen.
    e.Graphics.FillRectangle(blueBrush, x, y, width, height)
End Sub

Poznámky

Tato metoda vyplní vnitřní část obdélníku definovanéhox, y, widtha height parametry, včetně zadaného levého horního rohu a až do počítaných dolních a dolních hran.

Platí pro

FillRectangle(Brush, Single, Single, Single, Single)

Zdroj:
Graphics.cs
Zdroj:
Graphics.cs
Zdroj:
Graphics.cs
Zdroj:
Graphics.cs
Zdroj:
Graphics.cs

Vyplní vnitřní část obdélníku určeného dvojicí souřadnic, šířky a výšky.

public:
 void FillRectangle(System::Drawing::Brush ^ brush, float x, float y, float width, float height);
public void FillRectangle (System.Drawing.Brush brush, float x, float y, float width, float height);
member this.FillRectangle : System.Drawing.Brush * single * single * single * single -> unit
Public Sub FillRectangle (brush As Brush, x As Single, y As Single, width As Single, height As Single)

Parametry

brush
Brush

Brush určující vlastnosti výplně.

x
Single

Souřadnice x levého horního rohu obdélníku, který se má vyplnit.

y
Single

Souřadnice y levého horního rohu obdélníku, který se má vyplnit.

width
Single

Šířka obdélníku, který se má vyplnit.

height
Single

Výška obdélníku, který se má vyplnit.

Výjimky

brush je null.

Příklady

Následující příklad kódu je určený pro použití s Windows Forms a vyžaduje PaintEventArgse, což je parametr obslužné rutiny události Paint. Kód provede následující akci:

  • Vytvoří pevný modrý štětec.

  • Vytvoří umístění a velikost obdélníku.

  • Vyplní obdélníkovou oblast na obrazovce.

public:
   void FillRectangleFloat( PaintEventArgs^ e )
   {
      // Create solid brush.
      SolidBrush^ blueBrush = gcnew SolidBrush( Color::Blue );

      // Create location and size of rectangle.
      float x = 0.0F;
      float y = 0.0F;
      float width = 200.0F;
      float height = 200.0F;

      // Fill rectangle to screen.
      e->Graphics->FillRectangle( blueBrush, x, y, width, height );
   }
private void FillRectangleFloat(PaintEventArgs e)
{

    // Create solid brush.
    SolidBrush blueBrush = new SolidBrush(Color.Blue);

    // Create location and size of rectangle.
    float x = 0.0F;
    float y = 0.0F;
    float width = 200.0F;
    float height = 200.0F;

    // Fill rectangle to screen.
    e.Graphics.FillRectangle(blueBrush, x, y, width, height);
}
Private Sub FillRectangleFloat(ByVal e As PaintEventArgs)

    ' Create solid brush.
    Dim blueBrush As New SolidBrush(Color.Blue)

    ' Create location and size of rectangle.
    Dim x As Single = 0.0F
    Dim y As Single = 0.0F
    Dim width As Single = 200.0F
    Dim height As Single = 200.0F

    ' Fill rectangle to screen.
    e.Graphics.FillRectangle(blueBrush, x, y, width, height)
End Sub

Poznámky

Tato metoda vyplní vnitřní část obdélníku definovaného x, y, widtha height parametry, včetně zadaného levého horního rohu a až do počítaných dolních a dolních hran.

Platí pro