Graphics.DrawRectangles Metoda

Definice

Nakreslí řadu obdélníků určených Rectangle strukturami.

Přetížení

DrawRectangles(Pen, Rectangle[])

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

Nakreslí řadu obdélníků určených Rectangle strukturami.

C#
public void DrawRectangles (System.Drawing.Pen pen, System.Drawing.Rectangle[] rects);
C#
public void DrawRectangles (System.Drawing.Pen pen, params System.Drawing.Rectangle[] rects);

Parametry

pen
Pen

Pen, která určuje barvu, šířku a styl obrysů obdélníků.

rects
Rectangle[]

Pole Rectangle struktur, které představují obdélníky, které se mají nakreslit.

Výjimky

pen je null.

-nebo-

rects je null.

rects je pole nulové délky.

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í akce:

  • Vytvoří černé pero.

  • Vytvoří pole se třemi obdélníky.

  • Nakreslí obdélníky na obrazovku.

C#
public void DrawRectanglesRectangle(PaintEventArgs e)
{
             
    // Create pen.
    Pen blackPen = new Pen(Color.Black, 3);
             
    // Create array of rectangles.
    Rectangle[] rects =
             {
                 new Rectangle( 0,   0, 100, 200),
                 new Rectangle(100, 200, 250,  50),
                 new Rectangle(300,   0,  50, 100)
             };
             
    // Draw rectangles to screen.
    e.Graphics.DrawRectangles(blackPen, rects);
}

Platí pro

.NET 9 a další verze
Produkt Verze
.NET 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

DrawRectangles(Pen, RectangleF[])

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

Nakreslí řadu obdélníků určených RectangleF strukturami.

C#
public void DrawRectangles (System.Drawing.Pen pen, System.Drawing.RectangleF[] rects);
C#
public void DrawRectangles (System.Drawing.Pen pen, params System.Drawing.RectangleF[] rects);

Parametry

pen
Pen

Pen, která určuje barvu, šířku a styl obrysů obdélníků.

rects
RectangleF[]

Pole RectangleF struktur, které představují obdélníky, které se mají nakreslit.

Výjimky

pen je null.

-nebo-

rects je null.

rects je pole nulové délky.

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í akce:

  • Vytvoří černé pero.

  • Vytvoří pole se třemi obdélníky.

  • Nakreslí obdélníky na obrazovku.

C#
public void DrawRectanglesRectangleF(PaintEventArgs e)
{
             
    // Create pen.
    Pen blackPen = new Pen(Color.Black, 3);
             
    // 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)
             };
             
    // Draw rectangles to screen.
    e.Graphics.DrawRectangles(blackPen, rects);
}

Platí pro

.NET 9 a další verze
Produkt Verze
.NET 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

DrawRectangles(Pen, ReadOnlySpan<Rectangle>)

Zdroj:
Graphics.cs
Zdroj:
Graphics.cs
C#
public void DrawRectangles (System.Drawing.Pen pen, scoped ReadOnlySpan<System.Drawing.Rectangle> rects);

Parametry

pen
Pen

Platí pro

.NET 9 a Windows Desktop 9
Produkt Verze
.NET 9
Windows Desktop 9

DrawRectangles(Pen, ReadOnlySpan<RectangleF>)

Zdroj:
Graphics.cs
Zdroj:
Graphics.cs
C#
public void DrawRectangles (System.Drawing.Pen pen, scoped ReadOnlySpan<System.Drawing.RectangleF> rects);

Parametry

pen
Pen

Platí pro

.NET 9 a Windows Desktop 9
Produkt Verze
.NET 9
Windows Desktop 9